修改 linux.do 推广标签颜色

将 "推广" 和 "高级推广" 标签背景改为红色、文字改为黑色,"公益推广" 标签加金光闪闪效果

// ==UserScript==
// @name         修改 linux.do 推广标签颜色
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  将 "推广" 和 "高级推广" 标签背景改为红色、文字改为黑色,"公益推广" 标签加金光闪闪效果
// @author       schweigen
// @match        *://linux.do/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // 创建样式元素
    const style = document.createElement('style');
    style.textContent = `
        /* 解决方案机构用户标题样式 */
        .user-title--解决方案机构 {
            color: gold !important;
            font-weight: bold !important;
        }
    `;

    // 将样式添加到文档头部
    document.head.appendChild(style);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址