您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
暗金色主题
当前为
// ==UserScript== // @name 领歌背景增强脚本 // @namespace https://github.com/pcy190/TamperMonkeyScript // @version 1.2 // @description 暗金色主题 // @author lnwazg // @match https://www.leangoo.com/kanban/board/* // @grant none // @license GPL-2.0-only // ==/UserScript== function filterCSSRules(selectorText) { let rules = document.styleSheets[0].cssRules; let matchedRules = []; for (let i=0; i<rules.length; i++) { let rule = rules[i]; if (rule.selectorText === selectorText) { matchedRules.push(rule); } } return matchedRules; } //window.onload = function(){ document.body.style.backgroundColor="black"; //全局修改样式 filterCSSRules(".list_name").forEach(e => { e.style.color ="#10B910"; }); filterCSSRules(".list-header .list-title-div").forEach(e => { e.style.backgroundColor ="black"; }); filterCSSRules(".task_view").forEach(e => { e.style.backgroundColor ="black"; }); filterCSSRules(".task-name-content").forEach(e => { e.style.backgroundColor ="black"; e.style.color ="#F0B27A"; }); filterCSSRules(".btn-default").forEach(e => { e.style.backgroundColor ="black"; }); //}
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址