您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
护眼版掘金(杏木色)
// ==UserScript== // @name 护眼版掘金 // @namespace http://tampermonkey.net/ // @version 0.2.0 // @description 护眼版掘金(杏木色) // @author me // @match https://*.juejin.cn/* // @grant none // @run-at document-end // @license MIT // ==/UserScript== (function () { "use strict"; function overrideStyle() { const style = document.createElement('style'); style.textContent = `body, .light-theme { --juejin-font-1: #2e2e2e8c !important; --juejin-layer-1: rgb(250 249 222) !important; --juejin-background: #696861 !important; --juejin-gray-2: #efd78363; --juejin-brand-5-light: #e3e3e3; }`; document.head.appendChild(style); } if (document.readyState !== 'loading') { overrideStyle(); } else { document.addEventListener('DOMContentLoaded', overrideStyle); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址