您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Slove the "Access Denied" problem in arXiv
当前为
// ==UserScript== // @name arXiv Redirect // @include https://arxiv.org/* // @version 0.2 // @description Slove the "Access Denied" problem in arXiv // @author Daqing Liu // @date 2017.09.09 // @namespace http://greasyfork.icu/users/152128 // ==/UserScript== var str; str=document.getElementById("Access Denied").innerHTML; if(str.indexOf(CheckStr)==-1){ var url = window.location.toString(); window.location = url.replace('https://arxiv.org/', 'http://cn.arxiv.org/'); }