arXiv Vanity
Add an arXiv Vanity link to arXiv abstract pages.
arXiv Vanityคืออะไร?
arXiv Vanity เป็นส่วนขยายของ Chrome ที่พัฒนาโดย arXiv Vanity และคุณลักษณะหลักของมันคือ "Add an arXiv Vanity link to arXiv abstract pages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย arXiv Vanity
ดาวน์โหลดไฟล์ส่วนขยาย arXiv Vanity ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
arXiv Vanity renders academic papers from arXiv.org as responsive web pages so you don't have to squint at a PDF: https://www.arxiv-vanity.com/ This extension adds arXiv Vanity links to arXiv abstract pages. You can also click the extension icon to take you to the arXiv Vanity page when viewing an arXiv PDF. Contribute on GitHub: https://github.com/arxiv-vanity/arxiv-vanity-chrome-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | arXiv Vanity |
ID | jfnlkegibnoaagfdabjkchhocdhnoofk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/arxiv-vanity/jfnlkegibnoaagfdabjkchhocdhnoofk |
คำอธิบาย | Add an arXiv Vanity link to arXiv abstract pages. |
ขนาดไฟล์ | 26.17 KB |
จำนวนการติดตั้ง | 3,606 |
เวอร์ชันปัจจุบัน | 1.2.0 |
อัปเดตครั้งล่าสุด | 2021-12-28 |
วันที่เผยแพร่ | 2017-10-24 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | arXiv Vanity |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.arxiv-vanity.com |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "arXiv Vanity", "description": "Add an arXiv Vanity link to arXiv abstract pages.", "version": "1.2.0", "icons": { "128": "logo.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "logo.png" }, "permissions": [ "activeTab", "*:\/\/*.arxiv.org\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.arxiv.org\/abs\/*" ], "js": [ "arxivvanitymod.js" ] } ] } |