Last active
January 8, 2018 21:44
-
-
Save lufte/86ff7ea263eb334985bd7235d747f261 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name remove-elpais.com.uy-redirect | |
// @description Evitar redirect de registro en www.elpais.com.uy | |
// @version 1 | |
// @grant none | |
// @include http://elpais.com.uy/* | |
// @include http://www.elpais.com.uy/* | |
// @include https://elpais.com.uy/* | |
// @include https://www.elpais.com.uy/* | |
// @namespace https://github.com/lufte | |
// ==/UserScript== | |
setTimeout( | |
function() { | |
unsafeWindow.showEPDSw = false; | |
}, | |
1000 // La redirección ocurre a los 4 segundos (https://sc2.elpais.com.uy/js/epd_sw.js?1514887374) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment