Skip to content

Instantly share code, notes, and snippets.

@toshi75
Created October 4, 2022 09:06
Show Gist options
  • Save toshi75/b96f99eda63bfabb32d145908a97868b to your computer and use it in GitHub Desktop.
Save toshi75/b96f99eda63bfabb32d145908a97868b to your computer and use it in GitHub Desktop.
Bookmarklet
//Copy source to clipboard
javascript:(function(){var o=new XMLSerializer();e = document.createElement('textarea');e.textContent = (o.serializeToString(document.documentElement));document.body.appendChild(e);e.select();document.execCommand('copy');e.remove();})();
//Copy url to clipboard
javascript:(function(){e = document.createElement('textarea');e.textContent = document.URL;document.body.appendChild(e);e.select();document.execCommand('copy');e.remove();})();
//Duplicate tab
javascript:window.open(location.href)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment