arXiv later
Read arXiv paper later!
arXiv laterとは何ですか?
arXiv laterはhttps://blog.maydev.orgによって開発されたChromeの拡張機能で、その主な機能は「Read arXiv paper later!」です。
拡張機能のスクリーンショット
arXiv later拡張機能のCRXファイルをダウンロード
arXiv later拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Sometimes, We need to save arXiv paper somewhere because do not have enough time to read. 拡張機能の基本情報
| 名前 | |
| ID | lncjgbfhgaiienafghamfedcladpjnal |
| 公式URL | https://chrome.google.com/webstore/detail/arxiv-later/lncjgbfhgaiienafghamfedcladpjnal |
| 説明 | Read arXiv paper later! |
| ファイルサイズ | 475 KB |
| インストール数 | 250 |
| 現在のバージョン | 0.3 |
| 最終更新日 | 2019-06-15 |
| 公開日 | 2019-06-15 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | https://blog.maydev.org |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | 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"
]
} | |