English to Urdu & Urdu to English Translation

English to Urdu & Urdu to English Translation

Select any English, Urdu or Roman Urdu word to see its translation. You can also view definitions, quotes, idioms & related words.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "English to Urdu & Urdu to English Translation",
  "description": "Select any English, Urdu or Roman Urdu word to see its translation. You can also view definitions, quotes, idioms & related words.",
  "short_name": "Urdu Roman English dictionary",
  "version": "3",
  "content_scripts": [
    {
      "matches": [
        "http://*.meaningin.com/resource*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "logo16.png",
    "default_popup": "popup_mi.html",
    "default_title": "English to Urdu & Urdu to English Translation"
  },
  "icons": {
    "16": "logo16.png",
    "32": "logo32.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}