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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
        ]
    }
}