Arxiv Accelerator
Accelerate to download arxiv pdf in China!
什么是Arxiv Accelerator?
Arxiv Accelerator是由Liuchuan Yu开发的Chrome扩展程序,该扩展的主要功能是“Accelerate to download arxiv pdf in China!”。
扩展截图
下载Arxiv Accelerator扩展crx文件
下载Arxiv Accelerator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" ] } ] } |