Skip to content

Instantly share code, notes, and snippets.

@hatappo
Last active January 23, 2026 03:42
Show Gist options
  • Select an option

  • Save hatappo/286eaccd81029f452841e23576c92000 to your computer and use it in GitHub Desktop.

Select an option

Save hatappo/286eaccd81029f452841e23576c92000 to your computer and use it in GitHub Desktop.
Instagram からクライマーの情報を抽出してYAML形式でクリップボードにコピーするブックマークレット
javascript:(function(){const instagram=location.pathname.replaceAll('/','');const name=document.querySelectorAll('header section > div > div > span')[0].innerText;const gender='female';const text='---\ninstagram: '+instagram+'\nname: '+name+'\ngender: '+gender+'\nheight: null\nwingspan: null\nregion: null\ngym: null\ntag:\n---\n';navigator.clipboard.writeText(text);alert(text);})();
/*
Example: https://www.instagram.com/hachi_08/
---
instagram: hachi_08
name: 米津玄師 kenshi yonezu
gender: female
height: null
wingspan: null
region: null
gym: null
tag:
---
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment