Skip to content

Instantly share code, notes, and snippets.

@yuki2021
Created May 2, 2023 06:46
Show Gist options
  • Save yuki2021/76628ca7d28495e509b67802dc1aabfa to your computer and use it in GitHub Desktop.
Save yuki2021/76628ca7d28495e509b67802dc1aabfa to your computer and use it in GitHub Desktop.
Scrapboxのリンクをクリップボードにコピーするブックマークレット
javascript:(function(){
var textToCopy = '['+ document.title +' '+ location.href + ']';
navigator.clipboard.writeText(textToCopy).then(function() {
console.log('Copying to clipboard was successful!');
}, function(err) {
console.error('Could not copy text: ', err);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment