离线英汉词典

离线英汉词典

Select some English word or phrase in the web page, and press the toolbar button to see its Chinese translation in the popup. The dictionary data is built-in. No dependency on external translation services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "离线英汉词典",
  "version": "0.0.7",
  "description": "工具栏按钮, 弹窗显示选中词或短语的翻译",
  "homepage_url": "https://github.com/program-in-chinese/webextension_english_chinese_dictionary",
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_title": "离线英汉词典",
    "default_icon": {
      "32": "图标/项目_32.png"
    },
    "default_popup": "弹窗/主界面.html"
  },
  "icons": {
    "48": "图标/项目_48.png",
    "96": "图标/项目_96.png"
  },
  "background": {
    "scripts": [
      "加载词典.js",
      "查词.js"
    ]
  },
  "web_accessible_resources": [
    "词典数据/词典*.json"
  ]
}