SummarizeIt

Summarize any webpage with GPT-3 API.

SummarizeIt क्या है?

SummarizeIt 0xasten द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Summarize any webpage with GPT-3 API."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में SummarizeIt एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Summarize is a powerful and easy-to-use Chrome extension that lets you quickly obtain a summary of content. Powered by advanced natural language processing technology, Summarize uses GPT-3 API to generate accurate and concise summaries of the most important information, so you can get the gist of it in seconds.                    

एक्सटेंशन की मूल जानकारी

नाम SummarizeIt SummarizeIt
ID dpnomnajbhmkdinnklciapkgcacihmnl
आधिकारिक URL https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl
विवरण Summarize any webpage with GPT-3 API.
फ़ाइल का आकार 2.71 MB
स्थापना संख्या 95
वर्तमान संस्करण 2.0
अंतिम अपडेट 2023-06-15
प्रकाशन तिथि 2023-02-27
डेवलपर 0xasten
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://sites.google.com/view/0xasten-privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SummarizeIt",
    "version": "2.0",
    "description": "Summarize any webpage with GPT-3 API.",
    "icons": {
        "16": ".\/img\/icons\/icon16.png",
        "32": ".\/img\/icons\/icon32.png",
        "48": ".\/img\/icons\/icon48.png",
        "128": ".\/img\/icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js",
                "content_selection.js"
            ]
        }
    ],
    "action": {
        "default_icon": ".\/img\/icons\/icon32.png",
        "default_title": "Summarize Extension",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    }
}