// ==UserScript== // @name AFIP-navigate // @namespace http://www.nerdpower.org/ // @description Arregla el sitio de AFIP para poder imprimir constancias de Monotributo, entre otras cosas // @include https://*.afip.gov.ar/* // @include http://*.afip.gov.ar/* // ==/UserScript== // esto lo saque de aca: https://gist.github.com/1143845 window.unsafeWindow || ( unsafeWindow = (function() { var el = document.createElement('p'); el.setAttribute('onclick', 'return window;'); return el.onclick(); }()) ); unsafeWindow.navigate = function(u) { window.location.href = u };