Arxiv Accelerator
Accelerate to download arxiv pdf in China!
What is Arxiv Accelerator?
Arxiv Accelerator is a Chrome extension developed by Liuchuan Yu, and its main feature is "Accelerate to download arxiv pdf in China!".
Extension Screenshots
Download Arxiv Accelerator Extension CRX File
Download Arxiv Accelerator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Arxiv Accelerator |
ID | obdigfdkjihokfllecdkcocinjfgooco |
Official URL | https://chromewebstore.google.com/detail/arxiv-accelerator/obdigfdkjihokfllecdkcocinjfgooco |
Description | Accelerate to download arxiv pdf in China! |
File Size | 24.23 KB |
Installation Count | 144 |
Current Version | 1.2.2 |
Last Updated | 2020-04-13 |
Publish Date | 2020-04-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Liuchuan Yu |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |