Examine source code of VidSummize - AI YouTube Summary with Chat GPT

Inspect and view changes in VidSummize - AI YouTube Summary with Chat GPT source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VidSummize - AI YouTube Summary with Chat GPT",
  "version": "1.2.9",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "icons": {
    "16": "./Icon-16.png",
    "48": "./Icon-48.png",
    "128": "./Icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "./index.bundle.js"
      ],
      "css": [
        "./style.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "action": {
    "default_title": "VidSummize",
    "default_popup": "./popup.html"
  }
}