Last active
July 26, 2026 03:30
-
-
Save sendarionn/9472e83f6c10c7e8f0ae3d6d04368055 to your computer and use it in GitHub Desktop.
選択した文字列をGoogleで検索するブックマークレット
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:(()=>{const selection=window.getSelection()?.toString();if(!selection)return;window.open(`https://www.google.com/search?q=${encodeURIComponent(selection)}`,'_blank','noopener,noreferrer');navigator.clipboard.writeText(selection).catch(error=>console.error('コピーに失敗',error));})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment