ArxivGPT

Summarize a arXiv paper and provide key insights.

ArxivGPTคืออะไร?

ArxivGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hunkim และคุณลักษณะหลักของมันคือ "Summarize a arXiv paper and provide key insights."

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

screenshot
screenshot

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

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

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

                        ArxivGPT is a Google Chrome plug-in that helps you quickly understand the content of arXiv papers. With just a click, it summarizes the paper and provides key insights, saving you time and helping you quickly grasp the main ideas and concepts. Whether you're a researcher, student, or just curious about a particular topic, ArxivGPT makes it easy to stay informed and up-to-date on the latest developments in your field.

You can also ask follow up questions in the ask me anything input/button.                    

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

ชื่อ ArxivGPT ArxivGPT
ID fbbfpcjhnnklhmncjickdipdlhoddjoh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/arxivgpt/fbbfpcjhnnklhmncjickdipdlhoddjoh
คำอธิบาย Summarize a arXiv paper and provide key insights.
ขนาดไฟล์ 337 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 2023.02.14
อัปเดตครั้งล่าสุด 2023-02-15
วันที่เผยแพร่ 2023-02-07
คะแนน 3.78/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา hunkim
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/hunkimForks/chatgpt-arxiv-extension
URL หน้าช่วยเหลือ https://github.com/hunkimForks/chatgpt-arxiv-extension/issues
ภาษาที่รองรับ de,en,fr,es,hu,pt-PT,ro,ru,uk,iw,zh-CN,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "2023.02.14",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/arxiv.org\/*",
                "https:\/\/www.biorxiv.org\/content\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        }
    ]
}