Disable arificial selections

tries to prevent script-initiated selection tweaks

נכון ליום 30-09-2015. ראה הגרסה האחרונה.

// ==UserScript==
// @name        Disable arificial selections
// @description tries to prevent script-initiated selection tweaks
// @namespace   http://eldar.cz/myf/
// @license     MIT
// @version     1.0.2
// @grant       none
// ==/UserScript==

Selection.prototype.addRange 
= HTMLTextAreaElement.prototype.select 
= HTMLInputElement.prototype.select 
= function(){
	console.log && console.log('artificial selection disabled at ',this);
	return false
}