Greasy Fork is available in English.
http://acfun.tv域名自动跳转到http://www.aixifan.com,网站出问题时可启动
当前为
// ==UserScript==
// @name acfun2aixifan
// @namespace http://zhihaofans.com
// @version 0.1.0
// @description http://acfun.tv域名自动跳转到http://www.aixifan.com,网站出问题时可启动
// @author zhihaofans
// @match http://www.acfun.tv/*
// @grant none
// @note V0.1.0:初始版本
// @icon http://cdn.aixifan.com/ico/favicon.ico
// ==/UserScript==
if(location.hostname=="www.acfun.tv")
{
location.href="http://www.aixifan.com"+location.pathname;
}