您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
优化掘金的样式,去除了一些ai的广告
// ==UserScript== // @name 优化掘金的样式 // @namespace http://tampermonkey.net/ // @license MIT // @version 0.1.0 // @description 优化掘金的样式,去除了一些ai的广告 // @icon https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web//static/favicons/favicon-32x32.png // @author leftover // @run-at document-start // @match https://juejin.cn/* // ==/UserScript== (function() { const style = document.createElement("style"); style.id = "leftover"; style.innerHTML = ` .context-menu { display: none !important; } .adverts-list { display: none !important; } .sidebar-block.wechat-sidebar-block.pure.wechat-ad { display: none !important; } .btn.btn-ai { display: none !important; } .more-btn { display: none !important; } ` document.head.appendChild(style); })();