智译网页翻译-自动翻译、双语对照、AI对话

智译网页翻译-自动翻译、双语对照、AI对话

支持20+外语/民族语言,一键极速翻译,支持双语对照、自动翻译、AI总结和划词翻译。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "智译网页翻译-自动翻译、双语对照、AI对话",
  "description": "支持20+外语/民族语言,一键极速翻译,支持双语对照、自动翻译、AI总结和划词翻译。",
  "version": "2.3.0.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"
      }
    },
    "translate_web": {
      "description": "网页翻译快捷键",
      "suggested_key": {
        "default": "Alt+O"
      }
    },
    "translate_grabbed": {
      "description": "划词翻译快捷键",
      "suggested_key": {
        "default": "Alt+V"
      }
    },
    "hide_toolbar": {
      "description": "隐藏智译象胥",
      "suggested_key": {
        "default": "Alt+P"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "styles/*",
        "setting.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://fanyi-fanyi.newtranx.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "app/toolbar.js"
      ],
      "css": [
        "styles/toolbar.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "setting.html"
}