Examine source code of AI Speak Subtitles for YouTube

Inspect and view changes in AI Speak Subtitles for YouTube 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
{
  "manifest_version": 3,
  "name": "AI Speak Subtitles for YouTube",
  "version": "0.0.0",
  "description": "Translate and speak subtitles for YouTube into multiple languages with AI.",
  "action": {
    "default_icon": "./assets/icon-128.png"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "icons": {
    "16": "assets/icon-128.png",
    "32": "assets/icon-128.png",
    "48": "assets/icon-128.png",
    "128": "assets/icon-128.png",
    "512": "assets/icon-128.png"
  },
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./contentScripts.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "style.css",
        "injectedScript.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}