English Hindi English Dictionary

English Hindi English Dictionary

Hindi Dictionary: English-Hindi-English Dictionary, get meaning of different English words in Hindi in easy and handy way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "default_locale": "en",
  "version": "1.33",
  "manifest_version": 3,
  "description": "__MSG_extDetail__",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icon-bitty.png",
    "48": "icon-small.png",
    "128": "icon-large.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://www.kodand.com/*",
        "*://amp.kodand.com/*",
        "*://mob.kodand.com/*"
      ],
      "js": [
        "kodand_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "activeTab",
    "notifications",
    "gcm",
    "storage",
    "contextMenus",
    "tts",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "imgs/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "short_name": "__MSG_extShortName__"
}