Created
February 5, 2019 05:34
-
-
Save baskeboler/a7bdbf37b3dfbdc669557d48a7186467 to your computer and use it in GitHub Desktop.
bookmarklet para saltear el bloqueo por suscripción en elobservador.com.uy
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
javascript: (function() { function viewObserva(document) { let paywall = document.getElementsByClassName("mensaje_paywall"); for (let i = 0; i < paywall.length; i++) { paywall.item(i).remove(); } paywall = document.getElementsByClassName("mensaje_paywall2"); for (let i = 0; i < paywall.length; i++) { paywall.item(i).remove(); } let nota = document.getElementsByClassName("cuerpo"); for (let i = 0; i < nota.length; i++) { nota.item(i).classList.remove("fade"); } console.log("chupame la pija observador!") } viewObserva(document); })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment