Select to translate - Translator, Dictionary

Select to translate - Translator, Dictionary

Translator for web pages. Translate words and phrases. Full page translator based on Google Translate.

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "js/hot-reload.js",
      "js/common_utils/languages.js",
      "js/common_utils/database_utils.js",
      "js/config.js",
      "js/Utils.js",
      "js/core.js",
      "js/jquery.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_matches": [
        "*://translate.google.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/common_utils/translate_utils.js",
        "js/common_utils/audio_utils.js",
        "js/common_utils/languages.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css",
        "css/pageTranslation.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/128.png",
    "default_title": "Translator",
    "default_popup": "popup.html"
  },
  "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__",
  "options_page": "settings.html",
  "permissions": [
    "contextMenus",
    "<all_urls>",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "cookies"
  ],
  "short_name": "Translator",
  "version": "1.0.7",
  "web_accessible_resources": [
    "js/*",
    "images/*",
    "css/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}