Skip to content

Instantly share code, notes, and snippets.

@chitoku-k
Created November 14, 2016 01:48
Show Gist options
  • Save chitoku-k/39d5be811412639ece4478ca327a2f7a to your computer and use it in GitHub Desktop.
Save chitoku-k/39d5be811412639ece4478ca327a2f7a to your computer and use it in GitHub Desktop.
/* タイトルと URL コピーするやつ */
!function (document) {
var text = prompt("コメント:");
if (text == null) {
return;
}
text = text === "" ? "" : text + "\n\n";
var body = document.body;
var element = document.createElement("textarea");
element.textContent = text + document.title + " - " + location.href;
body.appendChild(element);
element.select();
document.execCommand("copy");
body.removeChild(element);
}(document);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment