Skip to content

Instantly share code, notes, and snippets.

@sendarionn
Last active July 26, 2026 03:30
Show Gist options
  • Select an option

  • Save sendarionn/9472e83f6c10c7e8f0ae3d6d04368055 to your computer and use it in GitHub Desktop.

Select an option

Save sendarionn/9472e83f6c10c7e8f0ae3d6d04368055 to your computer and use it in GitHub Desktop.
選択した文字列をGoogleで検索するブックマークレット
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