Google Translate in Right Click

Google Translate in Right Click

Selected any text on web pages and translate it to your preferred language with Google Translate.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_description__",
  "version": "1.2.5",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage",
    "activeTab",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/icon.png",
      "38": "icons/icon.png"
    }
  },
  "background": {
    "scripts": [
      "code/common.js",
      "code/html.js",
      "code/import.js",
      "code/services.js",
      "code/pref.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "code/inline.js",
        "code/smart-select.js",
        "code/yield.js",
        "code/learning.js",
        "code/translate.js",
        "code/common.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src  'self'  'unsafe-eval';  object-src 'self';",
  "icons": {
    "128": "icons/icon.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}