有道词典Chrome划词插件

有道词典Chrome划词插件

支持Chrome浏览器的划词翻译

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "options.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon_dict.gif",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "js": [
        "lookup.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "支持Chrome浏览器的划词翻译",
  "icons": {
    "64": "icon.png",
    "128": "icon-128.png"
  },
  "manifest_version": 2,
  "name": "有道词典Chrome划词插件",
  "options_page": "options.html",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.31",
  "web_accessible_resources": [
    "ab20.png",
    "ydd-sprite.png"
  ]
}