Created
August 9, 2017 01:51
-
-
Save songfei1983/f7b59c4a7bf96537e7bce2b42359f70a to your computer and use it in GitHub Desktop.
ChromeのBookmarkでクリップボードにコピーする ref: http://qiita.com/songfei1983/items/281654a983604e18d842
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(){ | |
var copyFrom = document.createElement("textarea"); | |
copyFrom.textContent = 'copy!'; | |
var bodyElm = document.getElementsByTagName("body")[0]; | |
bodyElm.appendChild(copyFrom); | |
copyFrom.select(); | |
var retVal = document.execCommand('copy'); | |
bodyElm.removeChild(copyFrom); | |
return retVal; | |
})(); |
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(){var copyFrom = document.createElement("textarea");copyFrom.textContent = 'LGTM';var bodyElm = document.getElementsByTagName("body")[0];bodyElm.appendChild(copyFrom);copyFrom.select();var retVal = document.execCommand('copy');bodyElm.removeChild(copyFrom);return retVal;})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment