URLをScrapboxの外部リンク記法でコピーするブックマークレット
[タイトル URL]の形でコピーする
けしごむ.iconCtrl + Cすら押すのがめんどくさかったのでコピーまでワンクリックにした
Clipboard APIだとhttpのページで動かない
execCommandに修正
code:exlink.js
javascript:(function(){
const text = '['+document.title.replace(/\s*[\\]\s*/g,' ')+' '+location.href+']'; const e = document.createElement('textarea');
e.value = text;
document.querySelector('body').append(e);
e.select();
document.execCommand('copy');
e.remove();
window.prompt('クリップボードにコピーしました',text);
})();
参考