您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
净化简书
// ==UserScript== // @name Pure_简书 // @namespace https://www.jianshu.com/* // @match https://www.jianshu.com/* // @grant none // @version 0.0.6 // @author 13号寄信人 // @description 净化简书 // @license MIT // ==/UserScript== (function () { 'use strict'; appendStyle(buildCss()) function buildCss() { if (browserDetection() !== "PC") { //------------------------移动端------------------------ console.log("Not PC") return ` .call-app-Ad-bottom , #footer , .recommend-ad , #lwaAdFive , .note-graceful-button , #free-reward-panel , #comment-main ,.call-app-Ad-bottom , iframe , .download-app-guidance , .collapse-tips { display: none !important; } .collapse-free-content { height: 100% !important; } ` } else { //------------------------桌面端------------------------ console.log("Is PC") return ` ._2OwGUo , ._3Pnjry , .ouvJEz:nth-child(2) , footer , .d0hShY , ._13lIbp , ._19DgIp , #note-fixed-ad-container , #note-book-info , #note-ad , .meta-bottom , #free-reward-panel{ display: none !important; } ._gp-ck { width: 100% !important; } .post { width: 50% !important; } ` } } function appendStyle(css) { let styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } function browserDetection() { const userAgent = window.navigator.userAgent.toLowerCase(); let browser = null; if (userAgent.match(/ipad/i)) { browser = 'ipad'; } else if (userAgent.match(/iphone os/i)) { browser = 'iphone'; } else if (userAgent.match(/midp/i)) { browser = 'midp' } else if (userAgent.match(/rv:1.2.3.4/i)) { browser = 'rv:1.2.3.4'; } else if (userAgent.match(/ucweb/i)) { browser = 'ucweb'; } else if (userAgent.match(/android/i)) { browser = 'android'; } else if (userAgent.match(/windows ce/i)) { browser = 'windowsCe'; } else if (userAgent.match(/windows mobile/i)) { browser = 'windowsMobile'; } else { browser = 'PC' } return browser; } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址