Greasy Fork is available in English.

acfun_replace_href

try to take over the world!

Pada tanggal 19 Maret 2017. Lihat %(latest_version_link).

// ==UserScript==
// @name         acfun_replace_href
// @namespace    http://www.acfun.cn
// @version      0.1
// @description  try to take over the world!
// @author       星雨漂流
// @match        http://www.acfun.cn/v/*
// @grant        none
// ==/UserScript==

(function() {
    var videoSrc = location.href.split("/");
    if(videoSrc[3] =="v"){
      var toSrc = "http://www.acfun.cn/a/" + videoSrc[4];
      location.href = toSrc;
    }
})(window);