您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypass all medium blogs paywall (external domain and subdomains too)
// ==UserScript== // @name Unlock All Medium.com Blogs // @description Bypass all medium blogs paywall (external domain and subdomains too) // @version 1.3 // @match *://*/* // @author SH3LL // @license MIT // @namespace https://gf.qytechs.cn/users/762057 // ==/UserScript== (function() { 'use strict'; // Medium tag hook const mediumTag = document.querySelector('meta[data-rh="true"][property="og:site_name"][content="Medium"]'); // Check the tag if (mediumTag) { console.log("Medium.com TAG Found"); const authorTag1 = document.querySelector('meta[data-rh="true"][name="author"]') const authorTag2 = document.querySelector('meta[property="article:author"]') if (authorTag1 || authorTag2) { //const unlocked_page="https://medium.rest/query-by-url?urlPost="+window.location.href; const unlocked_page="https://freedium.cfd/"+window.location.href; console.log("Redirection to: "+unlocked_page); window.location.href=unlocked_page; } else { console.log("Medium.com AUTHOR TAG Not Found. Not Redirected !"); } } else { console.log("Medium.com BLOG TAG Not Found. Not Redirected !"); } // Change the background color of medium.rest if(window.location.href.includes("medium.rest")){ document.body.style.backgroundImage = 'none'; let main_body = document.querySelector('.ci.bh.ez.fa.fb.fc'); main_body.style.maxWidth="10000px"; main_body.style.margin="0px"; } // remove id="header" of freedium.cfd if(window.location.href.includes("freedium.cfd")){ const headerElement = document.getElementById('header'); if (headerElement) { headerElement.remove(); } // remove div with classe "fixed bottom-4 left-4" freedium.cfd const fixedDivs = document.querySelectorAll('.fixed.bottom-4.left-4'); fixedDivs.forEach(div => { div.remove(); }); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址