Greasy Fork

NGA域名重定向

NGA域名重定向到178

目前为 2022-09-19 提交的版本。查看 最新版本

// ==UserScript==
// @name         NGA域名重定向
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  NGA域名重定向到178
// @author       fengqi
// @match		*://bbs.nga.cn/*
// @match		*://ngabbs.com/*
// @match		*://*.ngacn.cc/*
// @match		*://ngacn.cc/*
// @match		*://g.nga.cn/*
// @match		*://yues.org/*
// @grant        none
// @license MIT
// @run-at		document-start
// ==/UserScript==

(function() {
    window.location.replace(location.href.replace(location.hostname, "nga.178.com"));
})();