领歌背景增强脚本

暗金色主题

目前為 2023-05-20 提交的版本,檢視 最新版本

// ==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或关注我们的公众号极客氢云获取最新地址