The Language Translator

The Language Translator

A Chrome Extension which translates text between English and Chinese Simplified by default.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_ExtensionName__",
  "description": "__MSG_ExtensionRemark__",
  "default_locale": "en",
  "version": "2.14.406",
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "webNavigation",
    "activeTab",
    "notifications",
    "clipboardRead",
    "clipboardWrite",
    "storage",
    "unlimitedStorage",
    "tts",
    "windows",
    "geolocation",
    "tabs"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "icons": {
    "16": "image/logo_016.png",
    "48": "image/logo_048.png",
    "128": "image/logo_128.png"
  },
  "browser_action": {
    "default_popup": "popup_dialog.html",
    "default_icon": {
      "19": "image/language_19.jpg",
      "38": "image/language_19.jpg"
    },
    "default_title": "__MSG_ExtesionTitle__"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "options_page": "options.html",
  "incognito": "spanning",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style/contents.css"
      ],
      "js": [
        "script/jquery-1.10.1.js",
        "script/jquery-1.10.1.min.js",
        "script/jquery.watermark.min.js",
        "script/i18n.js",
        "script/common.js",
        "script/clipboard.js",
        "script/storages.js",
        "script/translators.js",
        "script/wikipages.js",
        "script/search-onweb.js",
        "script/addDOMLoadEvent.js",
        "script/popup_dialog.js",
        "script/ninegrid.js",
        "script/contents.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "image/logo.jpg",
    "image/language_19.jpg",
    "image/volume_max.png",
    "image/glyphicons-halflings.png",
    "image/google_wallet_logo.png",
    "popup_dialog.html",
    "ninegrid.html",
    "script/i18n.js",
    "script/geo.js",
    "script/geoapi.js",
    "script/wikipages.js",
    "script/addDOMLoadEvent.js",
    "script/jquery.watermark.min.js",
    "script/common.js",
    "script/storages.js",
    "script/translators.js",
    "script/popup_dialog.js",
    "script/popup_dialog.js",
    "script/jquery-1.10.1.js",
    "script/jquery-1.10.1.min.js",
    "script/jquery-1.10.1.min.map",
    "script/search-onweb.js"
  ]
}