Skip to content

Instantly share code, notes, and snippets.

@Nyoho
Last active March 9, 2020 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nyoho/fa90197b14737c8e99245198c5543d51 to your computer and use it in GitHub Desktop.
Save Nyoho/fa90197b14737c8e99245198c5543d51 to your computer and use it in GitHub Desktop.
タイトルとURLをコピーするフォームを出現させるbookmarklet。URLに日本語が入っていてもOK
javascript:(()%20=>%20{%20%20%20let%20e%20=%20document.createElement('textarea');%20%20%20e.style.width%20=%20'100%25';%20%20%20e.style.border%20=%20'4px%20solid%20#FA44A7';%20%20%20e.style.top%20=%200;%20%20%20e.style.zIndex%20=%20255;%20%20%20e.value%20=%20'%20<%20'%20+%20document.title%20+%20'%20'%20+%20location.href;%20%20%20document.body.insertBefore(e,document.body.firstChild);%20%20%20e.focus();%20%20%20e.select();%20%20%20e.ondblclick%20=%20()%20=>%20{%20%20%20%20%20e.parentNode.removeChild(e);%20%20%20};%20%20%20e.oncopy%20=%20()%20=>%20{%20%20%20%20%20setTimeout(()%20=>%20{%20e.parentNode.removeChild(e);%20},%201);%20%20%20%20%20return%20true;%20%20%20}%20})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment