YouTuBe Summary Free

YouTuBe Summary Free

Summarize YouTube videos and save time with this extension, powered by ChatGPT (OpenAI).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTuBe Summary Free",
  "description": "Summarize YouTube videos and save time with this extension, powered by ChatGPT (OpenAI).",
  "version": "0.0.3",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "host_permissions": [
    "https://*.openai.com/",
    "https://*.vercel.app/*"
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}