SummarizeIt

Summarize any webpage with GPT-3 API.

SummarizeIt là gì?

SummarizeIt là một tiện ích mở rộng Chrome được phát triển bởi 0xasten, và tính năng chính của nó là "Summarize any webpage with GPT-3 API.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        Summarize is a powerful and easy-to-use Chrome extension that lets you quickly obtain a summary of content. Powered by advanced natural language processing technology, Summarize uses GPT-3 API to generate accurate and concise summaries of the most important information, so you can get the gist of it in seconds.                    

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

Tên SummarizeIt SummarizeIt
ID dpnomnajbhmkdinnklciapkgcacihmnl
URL Chính Thức https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl
Mô tả Summarize any webpage with GPT-3 API.
Kích Thước Tệp 2.71 MB
Số Lần Cài Đặt 95
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2023-06-15
Ngày Phát Hành 2023-02-27
Nhà Phát Triển 0xasten
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://sites.google.com/view/0xasten-privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SummarizeIt",
    "version": "2.0",
    "description": "Summarize any webpage with GPT-3 API.",
    "icons": {
        "16": ".\/img\/icons\/icon16.png",
        "32": ".\/img\/icons\/icon32.png",
        "48": ".\/img\/icons\/icon48.png",
        "128": ".\/img\/icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js",
                "content_selection.js"
            ]
        }
    ],
    "action": {
        "default_icon": ".\/img\/icons\/icon32.png",
        "default_title": "Summarize Extension",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    }
}