Last active
January 23, 2026 03:42
-
-
Save hatappo/286eaccd81029f452841e23576c92000 to your computer and use it in GitHub Desktop.
Instagram からクライマーの情報を抽出してYAML形式でクリップボードにコピーするブックマークレット
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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