hiroxto
https://gyazo.com/66d71f9d25d07460cf276db9a5832b3f
hiroxtoのScrapbox
はてなブログからぼちぼち移行
連絡先・各種SNSアカウント
GitHub /icons/GitHub.icon
Twitter /icons/Twitter.icon
Mail /icons/Gmail.icon
hiroxto<at>gmail.com
code:script.js
// リンクを外す
scrapbox.PopupMenu.addButton({
title: 'unlink',
onClick: text => {
const result = text.split(/\n/)
// テロメアが無駄に更新されるのを防ぐ
if(text == result) return;
return result;
}
});
code:script.js
scrapbox.PopupMenu.addButton({
title: 'Google Search',
onClick: text => {
// 記法を解除する
const keyword = text.split(/\n/)
.map(line => line.replace(/\(.*)\/g,'$1')).join('\n'); window.open(https://www.google.com/search?q=${encodeURIComponent(keyword)});
}
});