A Dict

A Dict

Look up a word definition in Macmillan English 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_extension_name__",
  "version": "1.0.6",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "author": "Denis Korzunov",
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "icons": {
    "16": "logo16.png",
    "64": "logo64.png",
    "128": "logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "apt.js"
      ]
    }
  ],
  "commands": {
    "search-selected-text": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "__MSG_hotkey_description__"
    }
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "style.css",
    "style.js",
    "mlogo16.png"
  ]
}