Arxiv Viewer

Provides sneak peeks of referenced papers on arxiv.

Arxiv Viewerคืออะไร?

Arxiv Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tchittesh และคุณลักษณะหลักของมันคือ "Provides sneak peeks of referenced papers on arxiv."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Arxiv Viewer

ดาวน์โหลดไฟล์ส่วนขยาย Arxiv Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Research is already pretty hard. Let's make reading papers a little less so. This chrome extension allows you to hover over references to get a quick look at the title, authors, abstract, and arXiv link of the cited work, so that you don't have to scroll back and forth between the text and bibliography.

We are able to process citations of the default form [author][year][title], if unambiguous and on arXiv.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Arxiv Viewer Arxiv Viewer
ID cecdoioelofhklejiembhfjfhbilcgdo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/arxiv-viewer/cecdoioelofhklejiembhfjfhbilcgdo
คำอธิบาย Provides sneak peeks of referenced papers on arxiv.
ขนาดไฟล์ 2.99 MB
จำนวนการติดตั้ง 73
เวอร์ชันปัจจุบัน 2.12.22
อัปเดตครั้งล่าสุด 2021-11-09
วันที่เผยแพร่ 2021-11-09
ผู้พัฒนา tchittesh
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/tchittesh/arxiv-viewer
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Arxiv Viewer",
    "version": "2.12.22",
    "description": "Provides sneak peeks of referenced papers on arxiv.",
    "icons": {
        "128": "arxiv_viewer_icon128.png",
        "48": "arxiv_viewer_icon48.png",
        "16": "arxiv_viewer_icon16.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/arxiv.org\/pdf\/*",
        "tabs",
        "webNavigation",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/arxiv.org\/pdf\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "css": [
                "contentstyle.css"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.jsdelivr.net 'unsafe-eval'; object-src 'self'",
    "storage": {
        "managed_schema": "preferences_schema.json"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "options_page": "options\/options.html",
    "background": {
        "page": "pdfHandler.html"
    },
    "page_action": {
        "default_icon": {
            "16": "arxiv_viewer_icon16.png",
            "48": "arxiv_viewer_icon48.png"
        },
        "default_title": "Show PDF URL",
        "default_popup": "pageActionPopup.html"
    },
    "incognito": "split",
    "web_accessible_resources": [
        "content\/web\/viewer.html",
        "http:\/*",
        "https:\/*"
    ]
}