arxiv-utils
Easy access on ArXiv! Rename the title to the paper's title. Add a button to navigate easily. Download PDF with meaningful filename.
arxiv-utilsคืออะไร?
arxiv-utils เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Johnson และคุณลักษณะหลักของมันคือ "Easy access on ArXiv! Rename the title to the paper's title. Add a button to navigate easily. Download PDF with meaningful filename."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย arxiv-utils
ดาวน์โหลดไฟล์ส่วนขยาย arxiv-utils ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
For ArXiv PDF / abstract tabs:
- Renames the title to paper's title automatically in the background. (Originally is meaningless paper id, or start with paper id)
- Add an action button to open its corresponding abstract / PDF page. (Originally is hard to get back to abstract page from PDF page)
- Add a direct download link on abstract page, click it to download the PDF with the title as filename. (Originally is paper id as filename)
- Open the paper in extra services such as ar5iv and arXiv Vanity.
- Better title even for bookmarks!
- Firefox has strict restrictions on PDF.js. So it doesn't work well with OneTab, the PDF renaming is achieved by intercepting requests and show the PDF in a container. The bookmark works well though.
- Works well with native tab search
Permissions:
- `tabs`: On extension button click, open a new tab and move it to the right of the old active tab.
- `activeTab`: Read active tab's title and modify it using the tab's url.
- `storage`: Save extension configurations.
- `contextMenus`: When right-click the extension button, show a help menu item.
- `scripting`: Inject content scripts to existing tabs.
- `*://arxiv.org/*`: Inject content scripts to existing tabs.
- `*://export.arxiv.org/*`: Inject content scripts to existing tabs.
- `*://browse.arxiv.org/*`: Inject content scripts to existing tabs.
- `*://ar5iv.labs.arxiv.org/*`: Inject content scripts to existing tabs. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | mnhdpeipjhhkmlhlcljdjpgmilbmehij |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/arxiv-utils/mnhdpeipjhhkmlhlcljdjpgmilbmehij |
| คำอธิบาย | Easy access on ArXiv! Rename the title to the paper's title. Add a button to navigate easily. Download PDF with meaningful filename. |
| ขนาดไฟล์ | 19.7 KB |
| จำนวนการติดตั้ง | 3,088 |
| เวอร์ชันปัจจุบัน | 1.8.2 |
| อัปเดตครั้งล่าสุด | 2023-10-13 |
| วันที่เผยแพร่ | 2020-05-16 |
| คะแนน | 5.00/5 รวมทั้งหมด 12 คะแนน |
| ผู้พัฒนา | Johnson |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/j3soon/arxiv-utils |
| URL หน้าช่วยเหลือ | https://github.com/j3soon/arxiv-utils/issues |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "arxiv-utils",
"version": "1.8.2",
"description": "Easy access on ArXiv! Rename the title to the paper's title. Add a button to navigate easily. Download PDF with meaningful filename.",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/arxiv.org\/*pdf*",
"*:\/\/arxiv.org\/abs\/*",
"*:\/\/export.arxiv.org\/*pdf*",
"*:\/\/export.arxiv.org\/abs\/*",
"*:\/\/browse.arxiv.org\/*pdf*",
"*:\/\/browse.arxiv.org\/abs\/*",
"*:\/\/ar5iv.labs.arxiv.org\/html\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_title": "Open Abstract \/ PDF"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+A"
}
}
},
"permissions": [
"tabs",
"activeTab",
"storage",
"contextMenus",
"scripting",
"downloads"
],
"host_permissions": [
"*:\/\/arxiv.org\/*",
"*:\/\/export.arxiv.org\/*",
"*:\/\/browse.arxiv.org\/*",
"*:\/\/ar5iv.labs.arxiv.org\/*"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"options_page": "options.html",
"manifest_version": 3
} | |