SummarizeYT - YouTube Summary with ChatGPT

SummarizeYT - YouTube Summary with ChatGPT

Summarize YouTube videos with ChatGPT directly from the thumbnail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SummarizeYT - YouTube Summary with ChatGPT",
  "short_name": "summarize_yt",
  "description": "Summarize YouTube videos with ChatGPT directly from the thumbnail",
  "version": "0.1.5",
  "manifest_version": 3,
  "host_permissions": [
    "https://*.youtube.com/*",
    "https://summarizeyt.com/*"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "background"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*",
        "https://summarizeyt.com/*"
      ],
      "css": [
        "/static/css/content.css"
      ],
      "js": [
        "/static/js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/media/*",
        "*"
      ],
      "matches": [
        "https://*.youtube.com/*",
        "https://summarizeyt.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon_production_16.png",
    "48": "icons/icon_production_48.png",
    "128": "icons/icon_production_128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}