arxir网址自动转向国内镜像

2019-08-06  本文已影响0人  winddy_akoky

问题

苦恼于不能访问arxir网址,有时运气好虽然可以访问,但是下载速度着实让人心急。上网搜索发现可以通过访问国内镜像来下载论文。
现在遇到的问题是,要下载一篇论文,如Ensemble adversarial training: Attacks and defenses,然后现在百度搜索,选择第一个:


image.png image.png

发现可以访问https://arxiv.org/abs/1705.07204
但是,点击pdf的时候就提示不可以访问:https://arxiv.org/pdf/1705.07204.pdf

image.png

解决方案

// ==UserScript==
// @name         arxiv转入国内镜像
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://arxiv.org/abs/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.body.addEventListener('mousedown', function(e){
        var targ = e.target || e.srcElement;

        if ( targ && targ.href && targ.href.match(/https?:\/\/arxiv.org\/pdf/) ) {
            targ.href = targ.href.replace(/https?:\/\/arxiv\.org\/pdf/, 'http://124.16.154.24/pdf');
        }
        if ( targ && targ.href && targ.href.match(/http?:\/\/arxiv.org\/pdf/) ) {
            targ.href = targ.href.replace(/http?:\/\/arxiv\.org\/pdf/, 'http://124.16.154.24/pdf');
        }
    });
})(); 

验证

image.png

发现可以访问https://arxiv.org/abs/1705.07204
但是,点击pdf的时候就提示不可以访问:https://arxiv.org/pdf/1705.07204.pdf

image.png

解决方案

// ==UserScript==
// @name         arxiv转入国内镜像
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://arxiv.org/abs/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.body.addEventListener('mousedown', function(e){
        var targ = e.target || e.srcElement;

        if ( targ && targ.href && targ.href.match(/https?:\/\/arxiv.org\/pdf/) ) {
            targ.href = targ.href.replace(/https?:\/\/arxiv\.org\/pdf/, 'http://124.16.154.24/pdf');
        }
        if ( targ && targ.href && targ.href.match(/http?:\/\/arxiv.org\/pdf/) ) {
            targ.href = targ.href.replace(/http?:\/\/arxiv\.org\/pdf/, 'http://124.16.154.24/pdf');
        }
    });
})(); 

验证

上一篇下一篇

猜你喜欢

热点阅读