Examine source code of NewTranx Subtitler - Real-time voice recognition and AI translation

Inspect and view changes in NewTranx Subtitler - Real-time voice recognition and AI translation 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_extName__",
  "description": "__MSG_extDesc__",
  "version": "1.8.5.0",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icon/icon16.png",
    "32": "assets/icon/icon128.png",
    "128": "assets/icon/icon128.png"
  },
  "background": {
    "service_worker": "app/background.js"
  },
  "commands": {
    "_execute_action": {
      "description": "",
      "suggested_key": {
        "default": "Alt+M"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "setting.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://fanyi-fanyi.newtranx.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "app/toolbar.js"
      ],
      "css": [
        "styles/toolbar.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "tabCapture",
    "downloads"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "setting.html",
  "default_locale": "zh_CN"
}