QuickRead | AI to Summarize Text on Web!

QuickRead is an Extension to summarize highlighted text on the web.

QuickRead | AI to Summarize Text on Web! là gì?

QuickRead | AI to Summarize Text on Web! là một tiện ích mở rộng Chrome được phát triển bởi Tareq Rafed, và tính năng chính của nó là "QuickRead is an Extension to summarize highlighted text on the web.".

Ả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 QuickRead | AI to Summarize Text on Web!

Tải xuống các tệp mở rộng QuickRead | AI to Summarize Text on Web! 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

                        Highlight text and get it summarized

Features:
* Simple UI to get your text on the fly (Just by highlighting it)
* Supports: English, German, Arabic (Classical)
* Uses GPT-3 model
* 100% Free
*  Adjustable configuration for the responses                    

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

Tên QuickRead | AI to Summarize Text on Web! QuickRead | AI to Summarize Text on Web!
ID oeeoigffcbighbmgjcggalipepjnihpe
URL Chính Thức https://chromewebstore.google.com/detail/quickread-ai-to-summarize/oeeoigffcbighbmgjcggalipepjnihpe
Mô tả QuickRead is an Extension to summarize highlighted text on the web.
Kích Thước Tệp 110 KB
Số Lần Cài Đặt 78
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2023-02-14
Ngày Phát Hành 2023-02-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Tareq Rafed
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://github.com/TareqRafed/quickread-legal/blob/main/README.md
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "QuickRead | AI to Summarize Text on Web!",
    "version": "0.0.1",
    "description": "QuickRead is an Extension to summarize highlighted text on the web.",
    "options_ui": {
        "page": "src\/pages\/options\/index.html"
    },
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "contentStyle.css"
            ]
        }
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "contentStyle.css",
                "icon-128.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "identity",
        "scripting"
    ],
    "oauth2": {
        "client_id": "369510291991-nf58uj3bnnonhrvudl10tj1fuaitvd1d.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    }
}