SummarizeIt

Summarize any webpage with GPT-3 API.

Qu'est-ce que SummarizeIt ?

SummarizeIt est une extension Chrome développée par 0xasten, et sa fonction principale est "Summarize any webpage with GPT-3 API.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension SummarizeIt

Téléchargez les fichiers d'extension SummarizeIt au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom SummarizeIt SummarizeIt
ID dpnomnajbhmkdinnklciapkgcacihmnl
URL Officiel https://chromewebstore.google.com/detail/summarizeit/dpnomnajbhmkdinnklciapkgcacihmnl
Description Summarize any webpage with GPT-3 API.
Taille du Fichier 2.71 MB
Nombre d'Installations 95
Version Actuelle 2.0
Dernière Mise à Jour 2023-06-15
Date de Publication 2023-02-27
Développeur 0xasten
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://sites.google.com/view/0xasten-privacy-policy
Langues Prises en Charge 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"
    }
}