NewTranx Subtitler - Real-time voice recognition and AI translation

NewTranx Subtitler - Real-time voice recognition and AI translation

Learn while watching overseas play series with the help of NewTranx Subtitler — a browser-based subtitle translation tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "1.8.1.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"
}