SummarizeIt

Summarize any webpage with GPT-3 API.

Cos'è SummarizeIt?

SummarizeIt è un'estensione di Chrome sviluppata da 0xasten, e la sua funzione principale è "Summarize any webpage with GPT-3 API.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione SummarizeIt

Scarica i file di estensione SummarizeIt in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SummarizeIt SummarizeIt
ID dpnomnajbhmkdinnklciapkgcacihmnl
URL Ufficiale https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl
Descrizione Summarize any webpage with GPT-3 API.
Dimensione del File 2.71 MB
Conteggio Installazioni 95
Versione Corrente 2.0
Ultimo Aggiornamento 2023-06-15
Data di Pubblicazione 2023-02-27
Sviluppatore 0xasten
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://sites.google.com/view/0xasten-privacy-policy
Lingue Supportate 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"
    }
}