您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
better Juejin experience, remove ads and other useless things, make it clean and simple, just like a monkey!
// ==UserScript== // @name Junjin Monkey - 掘金猴 // @namespace http://tampermonkey.net/ // @version 0.0.7 // @description better Juejin experience, remove ads and other useless things, make it clean and simple, just like a monkey! // @author Sherlock-V // @match https://juejin.cn // @match https://juejin.cn/* // @icon https://juejin.cn/favicon.ico // @grant GM_addStyle // @run-at document-body // @license MIT // ==/UserScript== (function () { 'use strict'; // Your code here... const cssText = ` `; GM_addStyle(cssText); const style = document.createElement('style') const hides = [ '#juejin > div.view-container div.sidebar.article-sidebar > ul.sidebar-bd-entry', '#juejin > div.view-container div.sidebar.article-sidebar > div.sidebar-block.wechat-sidebar-block.pure', '#juejin > div.view-container div.main-area.article-area > div.article-end > div.extension-banner', '#juejin > div.view-container li.nav-item.vip-entry', '#juejin > div.view-container ul > li.nav-item.link-item.special-activity-item', // 相关小册 '#juejin > div.view-container div.main-area.article-area > div.wrap.category-course-recommend', ].filter(Boolean) style.innerHTML = [ `${hides.join(',')}{ display: none !important; }`, ].join('') document.body.appendChild(style) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址