SummarizeIt

Summarize any webpage with GPT-3 API.

Wat is SummarizeIt?

SummarizeIt is een Chrome-extensie ontwikkeld door 0xasten, en de belangrijkste functie is "Summarize any webpage with GPT-3 API.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie SummarizeIt

Download SummarizeIt-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam SummarizeIt SummarizeIt
ID dpnomnajbhmkdinnklciapkgcacihmnl
Officiële URL https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl
Beschrijving Summarize any webpage with GPT-3 API.
Bestandsgrootte 2.71 MB
Aantal Installaties 95
Huidige Versie 2.0
Laatst Bijgewerkt 2023-06-15
Publicatiedatum 2023-02-27
Ontwikkelaar 0xasten
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://sites.google.com/view/0xasten-privacy-policy
Ondersteunde Talen 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"
    }
}