GitHub的Commits记录按钮外围加上黑色边框,并以蓝色字体和黄色背景高亮显示

GitHub's Commits recording button is surrounded by a black border, displayed in blue font, and highlighted with a yellow background

目前為 2024-01-04 提交的版本,檢視 最新版本

// ==UserScript==
// @name         GitHub的Commits记录按钮外围加上黑色边框,并以蓝色字体和黄色背景高亮显示
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  GitHub's Commits recording button is surrounded by a black border, displayed in blue font, and highlighted with a yellow background
// @author       aspen138
// @match        https://github.com/*
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
       span[data-component="text"] span.Text-sc-17v1xeu-0.ghRVGj {
            border: 2px solid black !important;
            background-color: yellow !important;
            color: blue !important;
        }
    `);
})();

QingJ © 2025

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