您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Show the full text of Le Parisiene
// ==UserScript== // @name Le Parisiene Full Text Articles // @name:it Le Parisiene Articoli // @namespace * // @version 2.0.0 // @description Show the full text of Le Parisiene // @description:it Mostra il testo completo degli articoli su Le Parisiene // @description:fr Afficher le texte intégral des articles Le Parisiene // @author Matteo De Marchi // @match https://www.leparisien.fr/* // @grant none // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html // ==/UserScript== (function () { 'use strict'; var timer = setInterval(function() { /*CHECK EVERY 1 SECONDS BECAUSE OBFUSCATION START AFTER N SECONDS*/ var _elements = document.getElementsByClassName("content paywall-abo blurText") if(_elements){ var i; for (i = 0; i < _elements.length; i++) { _elements[i].classList.remove("blurText"); } clearInterval(timer); } }, 1000); })()