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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "QuickRead is an Extension to summarize highlighted text on the web."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में QuickRead | AI to Summarize Text on Web! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
गोपनीयता नीति पृष्ठ 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"
        ]
    }
}