GitHub 伪装成 Gitee (码云)

中国人就用码云

目前為 2022-10-17 提交的版本,檢視 最新版本

// ==UserScript==
// @name GitHub 伪装成 Gitee (码云)
// @namespace userElaina
// @version 2022.10.16.20
// @description 中国人就用码云
// @author userElaina
// @license MIT
// @match *.github.com/*
// @grant none
// ==/UserScript==

(function () {
    document.querySelector('link[rel="icon"]').href = 'https://raw.githubusercontent.com/userElaina/this-is-the-China-website/main/github/gitee.ico';
    if (document.title.startsWith('GitHub')) {
        document.title = document.title.slice(6);
        if(document.title == ''){
            document.title ='- 基于 Git 的代码托管和研发协作平台';
        }
    } else {
        document.title = '- ' + document.title;
    }
    document.title = 'Gitee ' + document.title;
    var bigLogo = document.querySelector('a[class="Header-link"]');
    var height = bigLogo.clientHeight;
    bigLogo.innerHTML = '<img height=' + height + ' src="https://raw.githubusercontent.com/userElaina/this-is-the-China-website/3fe3709ffb8e2ff290160f948cd35f6c5eb44e82/github/gitee_big.svg">';
})();

QingJ © 2025

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