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! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tareq Rafed และคุณลักษณะหลักของมันคือ "QuickRead is an Extension to summarize highlighted text on the web."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QuickRead | AI to Summarize Text on Web!

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
        ]
    }
}