您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Permite eliminar el banner de suscripción de www.elmercurio.com para poder leer sin límites
当前为
- // ==UserScript==
- // @name Remove read more
- // @namespace https://userscripts.org/scripts/show/
- // @icon https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRsTeL1OShlJvghp1LWwhA6c9-A0CdM_tDCmYivzpnwojJSsDs&s
- // @version 1.0
- // @match https://www.elmercurio.com/Inversiones/Noticias/*
- // @match https://www.elmercurio.com/legal/noticias/opinion/*
- // @description Permite eliminar el banner de suscripción de www.elmercurio.com para poder leer sin límites
- // ==/UserScript==
- // delete read more content
- document.getElementById('modal_atencion_cliente').remove()
- document.getElementById('modal_limit_articulos').remove()
- // unlock scroll
- var i, l;
- for(i = 0; (l = document.getElementsByTagName("link")[i]); i++ ) {
- if (l.getAttribute("href") == "https://staticmer.emol.cl/css/inversiones/modalDigital.min.css?v=2") l.disabled = true;
- }