您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自定义主题
// ==UserScript== // @name inoreader主题自定义 // @version 0.14 // @description 自定义主题 // @match *://*.inoreader.com/* // @grant none // @namespace https://gf.qytechs.cn/users/158417 // ==/UserScript== (function() { 'use strict'; // 添加自定义CSS样式 const style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ` .graybutton_outline, .graybutton_outline:active, .graybutton_outline:focus, .graybutton_outline:disabled { color: #888888; background-color: #08bcd869; border: 1px solid #888888; } /* 为 parent_div_inner 类添加淡绿色背景 */ .parent_div_inner { background-color: #71a471; /* 浅绿色 */ } /* 为 sb_tree_part 添加指定背景颜色 */ #sb_tree_part { background: #549b77; /* 指定背景颜色 */ } /* 为 sidebar_wrapper 添加指定背景颜色 */ #sidebar_wrapper { background-color: #2a9b4c80; /* 指定背景颜色,带透明度 */ } #reader_pane{ background-color:#8d998975; } .article_unreaded .article_unread_dot_internal { background-color: #e013d9; } #tree_pane{ color: #ffffff; } .parent_div_inner_selected { color: #b800ff; } .subscriptions_legend { color: #b800ff; } `; document.head.appendChild(style); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址