Last active
April 17, 2021 16:16
-
-
Save s1r-J/6a43650a076a9ae07080c6dda15bc2a7 to your computer and use it in GitHub Desktop.
閲覧してるサイトのマークダウン記法リンクを取得するブックマークレット
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.replace(/\|/g, '\\|').replace(/\[/g, '\\[').replace(/\]/g, '\\]')}](${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