Last active
March 9, 2020 13:34
-
-
Save Nyoho/fa90197b14737c8e99245198c5543d51 to your computer and use it in GitHub Desktop.
タイトルとURLをコピーするフォームを出現させるbookmarklet。URLに日本語が入っていてもOK
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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