GitHub Public Badge Remover

Remove Public badge in GutHub

目前为 2021-09-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         GitHub Public Badge Remover
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Remove Public badge in GutHub
// @author       eggplants
// @homepage     https://github.com/eggplants
// @match        https://*.github.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

/* jshint esversion: 6 */

(function () {
    "use strict";
    Array.from(
        document.querySelectorAll(`span.Label.Label--secondary.v-align-middle`)
    ).forEach((e) => {
        if (e.innerText === "Public") {
            e.style = "display: none !important";
        }
    });
})();

QingJ © 2025

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