arXiv Vanity

Add an arXiv Vanity link to arXiv abstract pages.

arXiv Vanity là gì?

arXiv Vanity là một tiện ích mở rộng Chrome được phát triển bởi arXiv Vanity, và tính năng chính của nó là "Add an arXiv Vanity link to arXiv abstract pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng arXiv Vanity

Tải xuống các tệp mở rộng arXiv Vanity dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên arXiv Vanity arXiv Vanity
ID jfnlkegibnoaagfdabjkchhocdhnoofk
URL Chính Thức https://chromewebstore.google.com/detail/arxiv-vanity/jfnlkegibnoaagfdabjkchhocdhnoofk
Mô tả Add an arXiv Vanity link to arXiv abstract pages.
Kích Thước Tệp 26.17 KB
Số Lần Cài Đặt 3,606
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2021-12-28
Ngày Phát Hành 2017-10-24
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển arXiv Vanity
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.arxiv-vanity.com
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}