Translator, Dictionary - Accurate Translate

Translator, Dictionary - Accurate Translate

Translate text of on any webpage instantly using Google Translate. Online translator, accurate translation.

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "scripts/hot-reload.js",
      "scripts/globalHelpers/langHelper.js",
      "scripts/globalHelpers/dataBaseHelper.js",
      "scripts/globalHelpers/configHelper.js",
      "scripts/globalHelpers/utilsHelper.js",
      "scripts/globalHelpers/coreHelper.js",
      "scripts/jquery.js",
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_matches": [
        "*://translate.google.com/*"
      ],
      "js": [
        "scripts/jquery.js",
        "scripts/globalHelpers/translateHelper.js",
        "scripts/globalHelpers/audioHelper.js",
        "scripts/globalHelpers/langHelper.js",
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css",
        "styles/allPage.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "scripts/jquery.js",
        "scripts/globalHelpers/wholePageTranslateHelper.js"
      ],
      "css": [
        "styles/content.css",
        "styles/allPage.css"
      ],
      "matches": [
        "*://*.translate.goog/*"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "images/128.png",
    "default_title": "Translator",
    "default_popup": "html/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": "html/settings.html",
  "permissions": [
    "contextMenus",
    "<all_urls>",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "short_name": "Translator",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.6",
  "web_accessible_resources": [
    "scripts/*",
    "images/*",
    "styles/*",
    "fonts/*"
  ]
}