Visibull Kiosk

Kiosk application for Visibull digital signage.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Visibull Kiosk",
  "version": "2.0.0",
  "manifest_version": 2,
  "description": "Kiosk application for Visibull digital signage.",
  "author": {
    "name": "Visibull",
    "email": "support@spin.io"
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "kiosk_enabled": true,
  "offline_enabled": true,
  "app": {
    "background": {
      "scripts": [
        "app/js/background.js"
      ],
      "persistent": false
    }
  },
  "commands": {
    "goto-stations": {
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "description": "Go to the stations page."
    }
  },
  "permissions": [
    "system.display",
    "power",
    "webview",
    "alwaysOnTopWindows",
    "storage",
    "http://*.spin.io/",
    "https://*.spin.io/",
    "http://api.rollbar.com/",
    "https://api.rollbar.com/",
    "alarms",
    "usb",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "idle",
    "notifications",
    "power",
    "system.cpu",
    "system.memory",
    "system.network",
    "system.storage"
  ],
  "sockets": {
    "tcpServer": {
      "listen": ""
    }
  }
}