Last active
May 2, 2019 07:31
-
-
Save yuya/d007f8020c30c3b07d26a53eef80ad3a to your computer and use it in GitHub Desktop.
ウェブページのタイトルと URL を Markdown の書式に変更
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
;(function () { | |
var textarea = document.createElement("textarea"); | |
var title = document.title; | |
var href = location.href; | |
textarea.textContent = "" + title + "\n" + href; | |
document.body.appendChild(textarea); | |
textarea.select(); | |
document.execCommand("copy"); | |
document.body.removeChild(textarea); | |
})(); |
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:(function(){var a=document.createElement("textarea");a.textContent=""+document.title+"\n"+location.href;document.body.appendChild(a);a.select();document.execCommand("copy");document.body.removeChild(a)})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment