Remove read more

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

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Remove read more
// @namespace    https://greasyfork.org/scripts/412295-remove-read-more/code/Remove%20read%20more.user.js
// @homepage     https://greasyfork.org/en/scripts/412295/
// @contactURL   https://greasyfork.org/en/scripts/412295-remove-read-more/feedback
// @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;
}