您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fetch the full text of GEDI local newspapers
// ==UserScript== // @name GELocal Full Text Articles // @name:it GELocal - Articoli con testo completo // @namespace https://andrealazzarotto.com/ // @version 1.0.2 // @description Fetch the full text of GEDI local newspapers // @description:it Mostra il testo completo degli articoli dei quotidiani locali GEDI // @author Andrea Lazzarotto // @match https://*.gelocal.it/* // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js // @grant GM_xmlhttpRequest // @grant GM.xmlHttpRequest // @license GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html // ==/UserScript== /* Greasemonkey 4 wrapper */ if (typeof GM !== "undefined" && !!GM.xmlHttpRequest) { GM_xmlhttpRequest = GM.xmlHttpRequest; } function fetch(params) { return new Promise(function(resolve, reject) { params.onload = resolve; params.onerror = reject; GM_xmlhttpRequest(params); }); } (function() { 'use strict'; if (location.href.endsWith('amp/')) { location.href = location.href.slice(0, -4); } $(document).ready(function() { var paywalled = $("#article-body").prop('hidden'); if (paywalled) { fetch({ method: 'GET', url: location.pathname, }).then(function(responseDetails) { var r = responseDetails.responseText; r = r.replace(/<script/gi, '<div hidden ').replace(/script>/gi, 'div>'); var data = $(r); setTimeout(function() { $('#article-body').replaceWith(data.find('#article-body')); $('#article-body').attr('style', '').removeAttr('hidden'); $("#paywall-banner").parent().remove(); $(".paywall-adagio").remove(); }, 1000); }); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址