Greasy Fork is available in English.
将NGA玩家社区论坛的其他域名重定向至“bbs.nga.cn”。
// ==UserScript==
// @name NGA玩家社区论坛域名重定向
// @namespace http://greasyfork.icu/users/1204387
// @version 0.1.3
// @description 将NGA玩家社区论坛的其他域名重定向至“bbs.nga.cn”。
// @author Gentry Deng
// @match http*://g.nga.cn/*
// @match http*://nga.178.com/*
// @match http*://ngabbs.com/*
// @icon https://bbs.nga.cn/favicon.ico
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
(function () {
'use strict';
if (location.hostname != "bbs.nga.cn") {
window.location.hostname = "bbs.nga.cn";
}
})();