Video Summarizer for YouTube

Video Summarizer for YouTube

Summarize videos from YouTube using AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Video Summarizer for YouTube",
  "version": "0.0.1",
  "description": "Summarize videos from YouTube using AI",
  "host_permissions": [
    "https://*.youtube.com/*"
  ],
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "scripts/content-script.js"
      ]
    }
  ],
  "icons": {
    "128": "images/128x128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/outline-logo.svg"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}