Skip to content

Instantly share code, notes, and snippets.

@hmbr
Created November 16, 2014 14:48
Show Gist options
  • Save hmbr/6091fedceeb0614c9eef to your computer and use it in GitHub Desktop.
Save hmbr/6091fedceeb0614c9eef to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name habilitando usabilidade no wimoveis
// @namespace wimoveis.UX.enable
// @version 1
// @grant none
// o vilao da usabilidade http://www.wimoveis.com.br/js/dados_v1.0.js
// ==/UserScript==
unsafeWindow.document.onkeydown = null;
unsafeWindow.document.onkeyup = null;
unsafeWindow.document.oncontextmenu = null;
unsafeWindow.document.ondragstart = null;
unsafeWindow.document.onmousedown = null;
unsafeWindow.document.onmouseup = null;
unsafeWindow.document.onselectstart = null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment