arXiv Vanity

Add an arXiv Vanity link to arXiv abstract pages.

What is arXiv Vanity?

arXiv Vanity is a Chrome extension developed by arXiv Vanity, and its main feature is "Add an arXiv Vanity link to arXiv abstract pages.".

Extension Screenshots

screenshot

Download arXiv Vanity Extension CRX File

Download arXiv Vanity 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

                        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                    

Extension Basic Information

Name arXiv Vanity arXiv Vanity
ID jfnlkegibnoaagfdabjkchhocdhnoofk
Official URL https://chromewebstore.google.com/detail/arxiv-vanity/jfnlkegibnoaagfdabjkchhocdhnoofk
Description Add an arXiv Vanity link to arXiv abstract pages.
File Size 26.17 KB
Installation Count 3,606
Current Version 1.2.0
Last Updated 2021-12-28
Publish Date 2017-10-24
Rating 5.00/5 Total 2 Ratings
Developer arXiv Vanity
Email [email protected]
Payment Type free
Extension Website https://www.arxiv-vanity.com
Supported Languages 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"
            ]
        }
    ]
}