有道词典Chrome插件添加生词本

有道词典Chrome插件添加生词本

支持Chrome浏览器的划词翻译(添加生词本和音标显示)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "options.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon_dict.png",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "speech.js",
        "lookup.js",
        "rlog.v1.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "支持Chrome浏览器的划词翻译(添加生词本和音标显示)",
  "icons": {
    "64": "icon.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2,
  "name": "有道词典Chrome插件添加生词本",
  "options_page": "options.html",
  "version": "1.56",
  "web_accessible_resources": [
    "ab20.png",
    "ydd-sprite.png",
    "speech.png"
  ]
}