🏠 Home 

arxiv redirect

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


Install this script?
// ==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)
})();