SummarizeYT - AI YouTube Summary

SummarizeYT - AI YouTube Summary

Upgrade your YouTube experience! ⚡️ Quick summarization - Get video summaries in seconds! 🚫 Filter out clickbait - Get rid of the fluff and get straight to the point! 🕑 Save Time - No need to watch lengthy videos anymore!

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": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "https://*.youtube.com/*",
    "https://summarizeyt.com/*",
    "https://gpt-api-t8bl.onrender.com/*"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "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": [
    "static/media/*",
    "*"
  ],
  "icons": {
    "16": "icons/icon_production_16.png",
    "48": "icons/icon_production_48.png",
    "128": "icons/icon_production_128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}