Chrome Bing Dict

Chrome Bing Dict

翻译来自Bing词典,可自动识别中英互译,可将翻译结果直接插入到页面内容之中

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "default_locale": "en",
  "description": "翻译来自Bing词典,可自动识别中英互译,可将翻译结果直接插入到页面内容之中",
  "short_name": "__MSG_shortName__",
  "version": "1.4.0",
  "icons": {
    "128": "icon.png"
  },
  "author": "Dremy",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "chrome-dict.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "presistent": false
  },
  "permissions": [
    "storage"
  ]
}