arXiv later
Read arXiv paper later!
What is arXiv later?
arXiv later is a Chrome extension developed by https://blog.maydev.org, and its main feature is "Read arXiv paper later!".
Extension Screenshots
Download arXiv later Extension CRX File
Download arXiv later 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
Sometimes, We need to save arXiv paper somewhere because do not have enough time to read.
Extension Basic Information
Name | |
ID | lncjgbfhgaiienafghamfedcladpjnal |
Official URL | https://chrome.google.com/webstore/detail/arxiv-later/lncjgbfhgaiienafghamfedcladpjnal |
Description | Read arXiv paper later! |
File Size | 475 KB |
Installation Count | 250 |
Current Version | 0.3 |
Last Updated | 2019-06-15 |
Publish Date | 2019-06-15 |
Rating | 5.00/5 Total 3 Ratings |
Developer | https://blog.maydev.org |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "arXiv later", "description": "Read arXiv paper later!", "version": "0.3", "background": { "scripts": [ "background.js" ] }, "options_page": "index.html", "browser_action": { "default_icon": "arxiv.png", "default_title": "arXiv" }, "permissions": [ "activeTab", "tabs", "storage", "*:\/\/*.arxiv.org\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.arxiv.org\/abs\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "style.css" ] } |