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!?

QuickRead | AI to Summarize Text on Web!是由Tareq Rafed開發的Chrome擴展程式,該擴展的主要功能是“QuickRead is an Extension to summarize highlighted text on the web.”。

擴展截圖

screenshot
screenshot

下載QuickRead | AI to Summarize Text on Web!擴展crx文件

下載QuickRead | AI to Summarize Text on Web!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 QuickRead | AI to Summarize Text on Web! QuickRead | AI to Summarize Text on Web!
ID oeeoigffcbighbmgjcggalipepjnihpe
官方網址 https://chromewebstore.google.com/detail/quickread-ai-to-summarize/oeeoigffcbighbmgjcggalipepjnihpe
簡介 QuickRead is an Extension to summarize highlighted text on the web.
檔案大小 110 KB
安裝次數 78
目前版本 0.0.1
更新時間 2023-02-14
上架時間 2023-02-13
評分 5.00/5 共 1 次評分
開發者 Tareq Rafed
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://github.com/TareqRafed/quickread-legal/blob/main/README.md
支援的語言 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"
        ]
    }
}