xEditorChromePlugin

xEditorChromePlugin

Chrome Extension for the OpenText xEditor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "xEditorChromePlugin",
  "version": "1.0.3",
  "description": "Chrome Extension for the OpenText xEditor",
  "icons": {
    "16": "install/img/xEditor_16.png",
    "32": "install/img/xEditor_32.png",
    "64": "install/img/xEditor_64.png",
    "128": "install/img/xEditor_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webRequest",
    "*://*/*",
    "webRequestBlocking",
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "minimum_chrome_version": "6.0.0.0",
  "manifest_version": 2
}