Greasy Fork

arxiv redirect

将arxiv自动重定向到xxx.itp.ac.cn

目前为 2021-03-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         arxiv redirect
// @namespace https://greasyfork.org/users/727914
// @version      0.1
// @description  将arxiv自动重定向到xxx.itp.ac.cn
// @author       HC
// @include       /^https?://(.*\.)?arxiv\.org/.*/
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';
    var url = location.href.replace(location.hostname,'xxx.itp.ac.cn').replace('https','http')
    location.replace(url)
})();