Youtube Transcript

Youtube Transcript

Youtube Video Transcript and Video Summary: YouTube video to text transcript, YouTube summary with ChatGPT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.1.24",
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/icon 128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://chat.openai.com/*"
      ],
      "js": [
        "contentscript/index.bundle.js"
      ],
      "css": [
        "lib/yt_ai_summary.css"
      ],
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "16": "images/icon 16.png",
    "32": "images/icon 32.png",
    "64": "images/icon 64.png",
    "128": "images/icon 128.png"
  }
}