Dictionary - Synonyms, Definition, Translator

Dictionary - Synonyms, Definition, Translator

Explaining or clarify a term with google dictionary. Get meaning from vocabulary in popup. Easy and handy google dictionary.

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_name__",
  "version": "0.1.5.2",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "48": "icons/Dictionary-48.png",
    "64": "icons/Dictionary-64.png",
    "96": "icons/Dictionary-96.png"
  },
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true,
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "common/browser-polyfill.js",
        "common/jquery.js",
        "common/translate_utils.js",
        "common/audio_utils.js",
        "common/languages.js",
        "content_scripts/dictionary.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "common/browser-polyfill.js",
      "background/background.js",
      "background/jquery.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "https://www.google.com/",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ]
}