Examine source code of SubtifyAI: Summarize Videos Subtitles with AI

Inspect and view changes in SubtifyAI: Summarize Videos Subtitles with AI 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",
  "name": "__MSG_extNameFull__",
  "short_name": "__MSG_extName__",
  "version": "0.1.0",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "options_page": "html/options.html",
  "icons": {
    "16": "res/icons/logo/logo_16.png",
    "32": "res/icons/logo/logo_32.png",
    "48": "res/icons/logo/logo_48.png",
    "128": "res/icons/logo/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://vimeo.com/*",
        "https://www.dailymotion.com/video/*"
      ],
      "css": [
        "css/libs/tippy.css",
        "css/contentStyle.css"
      ],
      "js": [
        "js/libs/jquery.min.js",
        "js/libs/jquery.ba-throttle-debounce.min.js",
        "js/libs/uuidv4.min.js",
        "js/libs/arrive.min.js",
        "js/libs/popper.min.js",
        "js/libs/tippy-bundle.umd.min.js",
        "js/speaker.js",
        "js/config.js",
        "js/utils.js",
        "js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "author": "Oziku Technologies LLC",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "res/icons/logo/logo_16.png",
      "32": "res/icons/logo/logo_32.png",
      "48": "res/icons/logo/logo_48.png",
      "128": "res/icons/logo/logo_128.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://chat.openai.com/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://vimeo.com/*",
        "https://www.dailymotion.com/*"
      ],
      "resources": [
        "res/icons/logo/*.png",
        "res/icons/ui/*.png",
        "res/env/config.json"
      ]
    }
  ]
}