// ==UserScript== // @name NGA重定向到178 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 由于种种原因我们需要访问nga.178.com来浏览NGA // @author Souma // @match *://ngabbs.com/* // @match *://*.ngacn.cc/* // @match *://ngacn.cc/* // @match *://g.nga.cn/* // @icon https://nga.178.com/favicon.ico // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.location.replace(location.href.replace(location.hostname, "nga.178.com")); })();