您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
将Github链接重定向至国内镜像链接
// ==UserScript== // @name Github链接重定向 // @namespace https://greasyfork.org/users/1204823 // @version 0.1.0 // @description 将Github链接重定向至国内镜像链接 // @author Franz // @match *://github.com/* // @icon https://g-assets.nite07.org/assets/GitHub-Mark-ea2971cee799.png // @grant none // @run-at document-start // @license MIT // ==/UserScript== (function () { 'use strict'; if (location.hostname != "g.nite07.org") { window.location.hostname = "g.nite07.org"; } })();