Quick English Malayalam Dictionary

Quick English Malayalam Dictionary

By Mohsin Moideen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick English Malayalam Dictionary",
  "version": "1.3",
  "description": "By Mohsin Moideen",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "<all_urls>",
    "background",
    "clipboardRead",
    "clipboardWrite"
  ],
  "icons": {
    "128": "skin/img/icon_128.png"
  },
  "browser_action": {
    "default_icon": "skin/img/icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Z",
        "linux": "Ctrl+Shift+Z"
      }
    }
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  }
}