Last active
December 19, 2021 10:37
-
-
Save danielchc/2a30d3fe261210ec5a60f4ae9cd5b288 to your computer and use it in GitHub Desktop.
Quitar límite articulos ElPais
This file contains 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 Quitar Limite El Pais | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Quitar límite articulos ElPais | |
// @author danielchc | |
// @match https://elpais.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
window.localStorage.ArcP=null; | |
var sheet = window.document.styleSheets[0]; | |
sheet.insertRule('#paywallOfferSmall { display: none !important }', sheet.cssRules.length); | |
sheet.insertRule('#counterLayerDiv { display: none !important }', sheet.cssRules.length); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment