MBDictionary(English/Chinese/Japanese/Korean)

MBDictionary(English/Chinese/Japanese/Korean)

A translator/dictionary extension, support English/Chinese/Japanese/Korean.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_manifest_name__",
  "version": "5.1",
  "author": "tctplus",
  "default_locale": "en",
  "description": "__MSG_manifest_desc__",
  "icons": {
    "16": "img/mbdict_16.png",
    "32": "img/mbdict_32.png",
    "48": "img/mbdict_48.png",
    "128": "img/mbdict_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/mbdict_16.png",
      "38": "img/mbdict_32.png"
    },
    "default_popup": "popup.html"
  },
  "options_page": "option.html",
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/system.js",
      "js/storage.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "css": [],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "http://www.macmillandictionary.com/*",
    "http://cn.bing.com/*",
    "http://www.microsofttranslator.com/*",
    "http://api.microsofttranslator.com/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "mason.html",
    "option.html",
    "local.html"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}