Quick Translate - Translator & Dictionary

Quick Translate - Translator & Dictionary

Select a word or phrase and right-click to translate using Google Translator. Dictionary and translator for you!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/Utils.js",
      "js/core.js",
      "js/jquery.js",
      "js/background.js",
      "js/userTracker.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' ;object-src 'self';",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "browser_action": {
    "default_icon": "images/128.png",
    "default_title": "Translator",
    "default_popup": "popup.html"
  },
  "options_page": "settings.html",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "contextMenus",
    "storage",
    "*://*/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/translate.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "short_name": "Quick Translator",
  "version": "2.0.17",
  "web_accessible_resources": [
    "js/*",
    "images/*",
    "css/*"
  ]
}