Remove read more

Permite eliminar el banner de suscripción de www.elmercurio.com para poder leer sin límites

目前为 2020-10-01 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Remove read more
  3. // @namespace https://userscripts.org/scripts/show/
  4. // @icon https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRsTeL1OShlJvghp1LWwhA6c9-A0CdM_tDCmYivzpnwojJSsDs&s
  5. // @version 1.0
  6. // @match https://www.elmercurio.com/Inversiones/Noticias/*
  7. // @match https://www.elmercurio.com/legal/noticias/opinion/*
  8. // @description Permite eliminar el banner de suscripción de www.elmercurio.com para poder leer sin límites
  9. // ==/UserScript==
  10.  
  11. // delete read more content
  12. document.getElementById('modal_atencion_cliente').remove()
  13. document.getElementById('modal_limit_articulos').remove()
  14.  
  15. // unlock scroll
  16. var i, l;
  17. for(i = 0; (l = document.getElementsByTagName("link")[i]); i++ ) {
  18. if (l.getAttribute("href") == "https://staticmer.emol.cl/css/inversiones/modalDigital.min.css?v=2") l.disabled = true;
  19. }