arxiv redirect

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

  1. // ==UserScript==
  2. // @name arxiv redirect
  3. // @namespace https://gf.qytechs.cn/users/727914
  4. // @version 0.1
  5. // @description 将arxiv自动重定向到xxx.itp.ac.cn
  6. // @author HC
  7. // @include /^https?://(.*\.)?arxiv\.org/.*/
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var url = location.href.replace(location.hostname,'xxx.itp.ac.cn').replace('https','http')
  14. location.replace(url)
  15. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址