Greasy Fork is available in English.

El País PayWall Buster

Quita el paywall de El País si usas un bloqueador de anuncios: Elimina el mensaje "Para poder seguir navegando, permite que se te muestren anuncios o, si lo prefieres, suscríbete."

Від 28.04.2019. Дивіться остання версія.

// ==UserScript==
// @name         El País PayWall Buster
// @namespace    http://abda.io
// @version      0.1
// @description  Quita el paywall de El País si usas un bloqueador de anuncios: Elimina el mensaje "Para poder seguir navegando, permite que se te muestren anuncios o, si lo prefieres, suscríbete."
// @author       @aberouch
// @match        https://elpais.*/*
// @include      https://elpais.com/*
// @require      https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js
// @grant        none
// ==/UserScript==

(function() {
  "use strict";
  $(document).ready(function() {
    function antiwall() {
      $(".fc-dialog-container").fadeOut();
      $(".fc-dialog-overlay").fadeOut();
      $(".fc-whitelist-root").remove();
      $(".fc-ab-root").remove();
      $(".salida_articulo").css("overflow", "visible");
    }
    setTimeout(antiwall, 1400);
  });
})();