arXiv Vanity
Add an arXiv Vanity link to arXiv abstract pages.
Apa itu arXiv Vanity?
arXiv Vanity adalah ekstensi Chrome yang dikembangkan oleh arXiv Vanity, dan fitur utamanya adalah "Add an arXiv Vanity link to arXiv abstract pages.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi arXiv Vanity
Unduh file ekstensi arXiv Vanity dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | arXiv Vanity |
ID | jfnlkegibnoaagfdabjkchhocdhnoofk |
URL Resmi | https://chromewebstore.google.com/detail/arxiv-vanity/jfnlkegibnoaagfdabjkchhocdhnoofk |
Deskripsi | Add an arXiv Vanity link to arXiv abstract pages. |
Ukuran File | 26.17 KB |
Jumlah Instalasi | 3,606 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2021-12-28 |
Tanggal Publikasi | 2017-10-24 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | arXiv Vanity |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.arxiv-vanity.com |
Bahasa yang Didukung | 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" ] } ] } |