Whatsapp翻译辅助

Whatsapp翻译辅助

翻译、客户标签辅助插件,跨境达摩院技术支持!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Whatsapp翻译辅助",
  "version": "1.0.4",
  "author": "[email protected]",
  "description": "翻译、客户标签辅助插件,跨境达摩院技术支持!",
  "icons": {
    "16": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "跨境达摩院技术支持!"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "notifications"
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "all_frames": true,
      "css": [],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "https://damo.api.shoesupplier.cn/*",
    "https://fanyi-api.baidu.com/api/*"
  ],
  "omnibox": {
    "keyword": "damo"
  },
  "commands": {
    "translate_text": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "translate text"
    }
  }
}