Click Translate

Click Translate

Right click to translate any word quickly and easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Click Translate",
  "version": "1.0",
  "description": "Right click to translate any word quickly and easily.",
  "manifest_version": 2,
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/translate.css"
      ],
      "js": [
        "js/jquery-1.8.1.min.js",
        "js/jquery-ui-1.8.24.custom.min.js",
        "js/common.js",
        "js/contentscript.js"
      ]
    }
  ],
  "options_page": "/options.html",
  "background": {
    "page": "/background.html"
  },
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  }
}