Translator Instantaneous Above

Translator Instantaneous Above

Translator Instantaneous translate mouseover text using Google Translate.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Translator Instantaneous"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "bootstrapcustom.min.css"
      ],
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval';  object-src 'none'",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "options_ui": {
    "page": "popup.html"
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.4",
  "web_accessible_resources": [
    "pdfjs/web/viewer.html"
  ]
}