SCAMP Chrome App

SCAMP Chrome App

This utility bridging websites with USB HID Barcode Scanners and USB Scales - eg: Mettler Toledo PS60, Dymo, Holtek

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SCAMP Chrome App",
  "description": "This utility bridging websites with USB HID Barcode Scanners and USB Scales - eg: Mettler Toledo PS60, Dymo, Holtek",
  "short_name": "scamp-chrome-app",
  "version": "1.7.2",
  "manifest_version": 2,
  "externally_connectable": {
    "matches": [
      "https://*.scampapp.com/*",
      "https://*.blackfisk.com/*",
      "https://sentry.io/*",
      "https://*.sentry.io/*",
      "https://*.loggly.com/*"
    ]
  },
  "kiosk_enabled": true,
  "app": {
    "title": "SCAMP App",
    "background": {
      "scripts": [
        "/static/js/background.js"
      ]
    }
  },
  "permissions": [
    "usb",
    "notifications",
    "hid",
    "webview",
    "storage",
    "fullscreen",
    "alwaysOnTopWindows",
    "https://*.loggly.com/*",
    {
      "usbDevices": [
        {
          "vendorId": 2338,
          "productId": 32777
        },
        {
          "vendorId": 3768,
          "productId": 61440
        },
        {
          "vendorId": 1241,
          "productId": 32784
        },
        {
          "vendorId": 2338,
          "productId": 32771
        }
      ]
    }
  ],
  "icons": {
    "16": "/static/icons/16x16.png",
    "32": "/static/icons/32x32.png",
    "64": "/static/icons/64x64.png",
    "128": "/static/icons/128x128.png",
    "256": "/static/icons/256x256.png",
    "512": "/static/icons/512x512.png"
  },
  "sockets": {
    "tcp": {
      "connect": "*"
    },
    "tcpServer": {
      "listen": "*"
    }
  }
}