重定向到 ngabbs.com
// ==UserScript==
// @name NGA 重定向
// @namespace http://tampermonkey.net/
// @description 重定向到 ngabbs.com
// @version 2021.10.29
// @author azuki
// @license MIT
// @match *://nga.178.com/*
// @match *://bbs.nga.cn/*
// @match *://g.nga.cn/*
// @match *://ngacn.cc/*
// @match *://yues.org/*
// ==/UserScript==
(function() {
"use strict";
window.location.replace(location.href.replace(location.hostname, "ngabbs.com"));
})();