YouTube Summarizer

YouTube Summarizer

Free YouTube Video Summarizer with ChatGPT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.2.2",
  "name": "YouTube Summarizer",
  "description": "Free YouTube Video Summarizer with ChatGPT.",
  "icons": {
    "48": "logo48.png",
    "96": "logo96.png",
    "128": "logo128.png",
    "256": "logo256.png",
    "512": "logo512.png"
  },
  "action": {
    "default_icon": {
      "16": "logo16.png",
      "19": "logo19.png",
      "32": "logo32.png",
      "38": "logo38.png",
      "48": "logo48.png",
      "72": "logo48.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "manifest_version": 3
}