Skip to content

Instantly share code, notes, and snippets.

@to
Created December 26, 2008 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save to/40023 to your computer and use it in GitHub Desktop.
Save to/40023 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Stop Right Click
// @namespace http://github.com/to
// @include http://www.iza.ne.jp/*
// ==/UserScript==
window.addEventListener('contextmenu', function(e){
e.stopPropagation();
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment