ArxivGPT

Summarize a arXiv paper and provide key insights.

ArxivGPT là gì?

ArxivGPT là một tiện ích mở rộng Chrome được phát triển bởi hunkim, và tính năng chính của nó là "Summarize a arXiv paper and provide key insights.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng ArxivGPT 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

                        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.                    

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

Tên ArxivGPT ArxivGPT
ID fbbfpcjhnnklhmncjickdipdlhoddjoh
URL Chính Thức https://chromewebstore.google.com/detail/arxivgpt/fbbfpcjhnnklhmncjickdipdlhoddjoh
Mô tả Summarize a arXiv paper and provide key insights.
Kích Thước Tệp 337 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 2023.02.14
Cập Nhật Lần Cuối 2023-02-15
Ngày Phát Hành 2023-02-07
Đánh Giá 3.78/5 Tổng số 9 Đánh Giá
Nhà Phát Triển hunkim
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hunkimForks/chatgpt-arxiv-extension
URL Trang Trợ Giúp https://github.com/hunkimForks/chatgpt-arxiv-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}