Created
May 7, 2021 09:51
-
-
Save yammerjp/a40a98cc7f8f32c8708d9f10328b5f75 to your computer and use it in GitHub Desktop.
現在開いているページのURLとタイトルをMarkdownの形式でクリップボードにコピーする (以下のテキストをブックマークのURL欄に)
This file contains hidden or 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:(function(){const e=document.createElement('input');e.value=`[${document.title}](${location.href})`;document.querySelector('body').append(e);e.select();document.execCommand('copy');e.remove();})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment