YouTube Summarizer

Display ChatGPT summary on Youtube

Cos'è YouTube Summarizer?

YouTube Summarizer è un'estensione di Chrome sviluppata da Itamar Cohen, e la sua funzione principale è "Display ChatGPT summary on Youtube".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione YouTube Summarizer

Scarica i file di estensione YouTube Summarizer 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

                        Get a summary for a YouTube video in one click - Powered by OpenAI's ChatGPT AI technology.
The summary will generate in real time, embedded in the YouTube video page.                    

Informazioni di Base sull'Estensione

Nome YouTube Summarizer YouTube Summarizer
ID cmdffcgfpcmloddheiojdnbnimhgochk
URL Ufficiale https://chromewebstore.google.com/detail/youtube-summarizer/cmdffcgfpcmloddheiojdnbnimhgochk
Descrizione Display ChatGPT summary on Youtube
Dimensione del File 302 KB
Conteggio Installazioni 788
Versione Corrente 1.1.4
Ultimo Aggiornamento 2023-06-12
Data di Pubblicazione 2023-02-03
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Itamar Cohen
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Summarizer",
    "description": "Display ChatGPT summary on Youtube",
    "version": "1.1.4",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/"
    ],
    "background": {
        "service_worker": "background\/index.js"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content-script\/index.js"
            ],
            "css": [
                "github-markdown.css",
                "styles.css"
            ]
        }
    ]
}