scrapbox-search-wikipedia-with-pagetitle
機能
Scrapboxの表示しているページ名でググる。
用途例
ページだけ作った調べ物の続きをする時に簡単にGoogle検索結果から調べ物を再開する。
操作方法
ページを表示していてカーソルがない状態で w を押すと別タブでWikipedia検索する。
code:script.js
(() => {
let keydown = function(e) {
return (! e.shiftKey) &&
(! e.ctrlKey) &&
(! e.metaKey) &&
(! e.altKey) &&
e.key == 'w';
};
$('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;
window.open(url($('.line-title').text()), 'newtab');
});
})();