Skip to content

Instantly share code, notes, and snippets.

@abozhilov
Created February 18, 2012 12:19
Show Gist options
  • Save abozhilov/1859061 to your computer and use it in GitHub Desktop.
Save abozhilov/1859061 to your computer and use it in GitHub Desktop.
Глупостта на Блясък.
// ==UserScript==
// @name www.bliasak.bg
// @version 0.0.1
// @description It breaks their stupidness for prohibition the context menu and selection in article pages.
// @match http://www.bliasak.bg/*
// ==/UserScript==
/*
* document.oncontextmenu = mischandler;
* document.onmousedown = mousehandler;
* document.onmouseup = mousehandler
*/
function allowSelection(evt) {
evt.stopImmediatePropagation();
}
document.oncontextmenu = ('&> /dev/',null);
document.addEventListener('mousedown', allowSelection, true);
document.addEventListener('mouseup', allowSelection, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment