// ==UserScript== // @name GitHub Fast // @namespace http://tampermonkey.net/ // @version 1.0 // @description 自动将 github.com 重定向到 国内反代域名 // @author You // @match *://github.com/* // @match *://www.github.com/* // @match *://raw.githubusercontent.com/* // @match *://gist.github.com/* // @grant none // @run-at document-start // ==/UserScript== (function() { 'use strict'; let currentUrl = window.location.href; let newUrl = currentUrl .replace('github.com', 'gh.072103.xyz') .replace('raw.githubusercontent.com', 'raw.gh.072103.xyz') .replace('gist.github.com', 'gist.gh.072103.xyz'); if (newUrl !== currentUrl) { window.location.replace(newUrl); } })();