Translate Officer

Translate Officer

With 105 translation languages , with a built-in Google|Bing|Baidu|DeepL translation engine.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "background": {
    "service_worker": "js/serviceWorker.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "32": "icons/icon32.png",
      "64": "icons/icon64.png"
    },
    "default_title": "__MSG_name__"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "32": "icons/icon32.png",
    "64": "icons/icon64.png"
  },
  "content_scripts": [
    {
      "css": [
        "css/trof.css"
      ],
      "matches": [
        "https://translate.google.com/*",
        "https://translate.google.cn/*",
        "https://*.bing.com/translator*",
        "https://fanyi.baidu.com/*",
        "https://www.deepl.com/translato*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "version": "1.2.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}