Xerox Device Connector

Xerox Device Connector

This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Xerox Device Connector",
  "version": "5.2.1",
  "homepage_url": "https://appgallery.services.xerox.com",
  "icons": {
    "16": "app_gallery_16.png",
    "32": "app_gallery_32.png",
    "48": "app_gallery_48.png",
    "128": "app_gallery_128.png"
  },
  "description": "This extension, in conjunction with Xerox App Gallery portal, is used to talk to your devices.",
  "permissions": [
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    "manifest.json",
    "contentscript.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://appgallery.services.xerox.com/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}