generated at
scrapbox-search-google-with-pagetitle
scrapbox-shortcutkeyに統合した。

機能
Scrapboxの表示しているページ名でググる。

用途例
ページだけ作った調べ物の続きをする時に簡単にGoogle検索結果から調べ物を再開する。

操作方法
ページを表示していてカーソルがない状態で g を押すと別タブでGoogle検索する。

script.js
(() => { let keydown = function(e) { return (! e.shiftKey) && (! e.ctrlKey) && (! e.metaKey) && (! e.altKey) && e.key == 'g'; }; let url = function(s) { return 'https://www.google.co.jp/search?q=' + s; }; $('body').on('keydown', function(e) { if (e.target.tagName == "TEXTAREA") return; if (e.target.tagName == "INPUT") return; if (location.href.split('/')[4] == '') return; if (! keydown(e)) return; e.preventDefault(); e.stopPropagation(); window.open(url($('.line-title').text()) + ' ', 'newtab'); }); })();