bookmarklet
code:for scrapbox
javascript:(function(){window.prompt('ScrapLink','['+document.title.replace(/\s*[\\]\s*/g,' ')+' '+location.href+']')})(); // クリップボードに直接コピー
javascript:!function(){var e=document.createElement("textarea");e.textContent="["+document.title.replace(/\s*[\\]\s*/g," ")+" "+location.href+"]",document.querySelector("body").append(e),e.select(),document.execCommand("copy"),e.remove()}();void(null); void(null) をつけることでなにもリターンしないように
chrome ではなくても問題ないが、Firefox では return value が表示されてしまう
markdown用
code:markdown
javascript:!function(){var e=document.createElement("textarea"),t=document.title.replace(/\[/g,"\\").replace(//g,"\\]").replace(/\|/g,"\\|"),c=document.URL.replace(/\(/g,"%2528").replace(/\)/g,"%2529");e.textContent=""+t+"("+c+")",document.querySelector("body").append(e),e.select(),document.execCommand("copy"),e.remove()}();void(null)