YouTube Summarizer

Display ChatGPT summary on Youtube

What is YouTube Summarizer?

YouTube Summarizer is a Chrome extension developed by Itamar Cohen, and its main feature is "Display ChatGPT summary on Youtube".

Extension Screenshots

screenshot
screenshot

Download YouTube Summarizer Extension CRX File

Download YouTube Summarizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name YouTube Summarizer YouTube Summarizer
ID cmdffcgfpcmloddheiojdnbnimhgochk
Official URL https://chromewebstore.google.com/detail/youtube-summarizer/cmdffcgfpcmloddheiojdnbnimhgochk
Description Display ChatGPT summary on Youtube
File Size 302 KB
Installation Count 788
Current Version 1.1.4
Last Updated 2023-06-12
Publish Date 2023-02-03
Rating 5.00/5 Total 3 Ratings
Developer Itamar Cohen
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}