Skip to content

Instantly share code, notes, and snippets.

@ychin
Last active July 3, 2023 02:54
Show Gist options
  • Save ychin/2d259a758c24fe230ea5843680bc4281 to your computer and use it in GitHub Desktop.
Save ychin/2d259a758c24fe230ea5843680bc4281 to your computer and use it in GitHub Desktop.
Bookmarklet – Remove the anti-user event handlers on a website. If you are a web developer reading this: *Please* stop hijacking my web browser events, thanks!
javascript:window.addEventListener('contextmenu', function(event) {event.stopImmediatePropagation();}, true);
javascript:window.addEventListener('copy', function(event) {event.stopImmediatePropagation();}, true);
javascript:window.addEventListener('scroll', function(event) {event.stopImmediatePropagation();}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment