Greasy Fork

NGA重定向到178

由于种种原因我们需要访问nga.178.com来浏览NGA

// ==UserScript==
// @name         NGA重定向到178
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  由于种种原因我们需要访问nga.178.com来浏览NGA
// @author       Souma
// @match	 *://ngabbs.com/*
// @match	 *://*.ngacn.cc/*
// @match	 *://ngacn.cc/*
// @match	 *://g.nga.cn/*
// @match	 *://bbs.nga.cn/*
// @icon         https://nga.178.com/favicon.ico
// @grant        none
// @license      MIT
// ==/UserScript==

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