Skip to content

Instantly share code, notes, and snippets.

@danielchc
Last active December 19, 2021 10:37
Show Gist options
  • Save danielchc/2a30d3fe261210ec5a60f4ae9cd5b288 to your computer and use it in GitHub Desktop.
Save danielchc/2a30d3fe261210ec5a60f4ae9cd5b288 to your computer and use it in GitHub Desktop.
Quitar límite articulos ElPais
// ==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