海词词典(取词、划词助手)

海词词典(取词、划词助手)

支持海词词典在Chrome浏览器中实现鼠标取词、划词翻译

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "http://*/*"
      ],
      "css": [
        "page.css"
      ],
      "js": [
        "jquery.js",
        "common.js",
        "page.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "jquery.js",
    "common.js",
    "page.js",
    "page.css"
  ],
  "description": "支持海词词典在Chrome浏览器中实现鼠标取词、划词翻译",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "海词词典(取词、划词助手)",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "homepage_url": "http://www.dict.cn",
  "version": "1.0.2"
}