Last active
October 29, 2018 21:07
-
-
Save requeijaum/d72547a86b1ced0b65e5a85bb9abb2b2 to your computer and use it in GitHub Desktop.
DESBLOQUEAR artigos para assinantes do SuperInteressante.
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 SuperInteressante Desbloqueado! | |
// @namespace https://super.abril.com.br/ | |
// @version 08out2018 | |
// @description try to take over the Editora Abril! | |
// @author @requeijaum | |
// @match https://super.abril.com.br/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
$("div").removeClass('content-closed'); | |
$("div").removeClass('content-blocked'); | |
$("div").addClass('content'); | |
$("article").removeClass('content-closed'); | |
$("article").removeClass('content-blocked'); | |
$("article").addClass('content'); | |
$("section").removeClass('content-closed'); | |
$("section").removeClass('content-blocked'); | |
$("section").addClass('content'); | |
//callpaywall | |
$(".callpaywall").addClass('esconder'); | |
$(".esconder").hide(); | |
$("div").removeClass('callpaywall'); | |
//$("div").removeClass('content'); | |
//$("div").addClass('content'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fiz um GIST novo com filtros no uBlock que remover paywall... mas ainda não testei.
Por enquanto... ainda uso esse userscript no TamperMonkey do Firefox.