Arxiv Accelerator

Accelerate to download arxiv pdf in China!

Arxiv Accelerator란 무엇입니까?

Arxiv Accelerator은(는) Liuchuan Yu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Accelerate to download arxiv pdf in China!"입니다.

확장 프로그램 스크린샷

screenshot

Arxiv Accelerator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        In China, teachers, students, and researchers need to download the pdf full text on arxiv, such as https://arxiv.org/abs/1806.09755. However, it's too slow, which is just a waste of time to wait for downloading. 

This extension is to offer an alternative link on the original page for those who want to download. This link is an official website mirror in China.  Taking the mentioned URL 'https://arxiv.org/abs/1806.09755' as an example, its download link is 'https://arxiv.org/pdf/1806.09755'. This extension will add a new link below the download link, shown as 'Chinese mirror' on the HTML page whose actual link is 'http://cn.arxiv.org/pdf/1806.09755'. This is much faster in China.

Therefore, this extension is simple but much helpful.                    

확장 프로그램 기본 정보

이름 Arxiv Accelerator Arxiv Accelerator
ID obdigfdkjihokfllecdkcocinjfgooco
공식 URL https://chromewebstore.google.com/detail/arxiv-accelerator/obdigfdkjihokfllecdkcocinjfgooco
설명 Accelerate to download arxiv pdf in China!
파일 크기 24.23 KB
설치 횟수 144
현재 버전 1.2.2
최근 업데이트 2020-04-13
출시 날짜 2020-04-10
평점 5.00/5 총 2 개의 평점
개발자 Liuchuan Yu
이메일 [email protected]
결제 유형 free
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Arxiv Accelerator",
    "short_name": "A-Accelerator",
    "version": "1.2.2",
    "description": "Accelerate to download arxiv pdf in China!",
    "manifest_version": 2,
    "icons": {
        "16": "16x16.png",
        "32": "32x32.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "*:\/\/arxiv.org\/*",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/arxiv.org\/abs\/*",
                "*:\/\/arxiv.org\/pdf\/*"
            ],
            "js": [
                "arxivaccelerator.js"
            ]
        }
    ]
}