scrapbox-search-qiita-with-pagetitle
機能
Scrapboxの表示しているページ名でQiita検索する。
操作方法
ページを表示していてカーソルがない状態で q を押すと別タブでQiita検索する。
code:script.js
(() => {
let keydown = function(e) {
return (! e.shiftKey) &&
(! e.ctrlKey) &&
(! e.metaKey) &&
(! e.altKey) &&
e.key == 'q';
};
$('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');
});
})();