Appspace

Appspace

Turn your Chrome device into the ultimate Appspace digital signage player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Appspace",
  "description": "Turn your Chrome device into the ultimate Appspace digital signage player.",
  "version": "2.70.2",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "offline_enabled": true,
  "kiosk_enabled": true,
  "kiosk": {
    "required_platform_version": "15437",
    "always_update": true
  },
  "short_name": "Appspace",
  "icons": {
    "16": "res/icon16.png",
    "48": "res/icon48.png",
    "128": "res/icon128.png"
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "webview": {
    "partitions": [
      {
        "name": "trusted*",
        "accessible_resources": [
          "*.html",
          "*.png",
          "*.jpg",
          "*.css",
          "*.js",
          "*.swf"
        ]
      }
    ]
  },
  "sockets": {
    "tcp": {
      "connect": "*"
    },
    "tcpServer": {
      "listen": "*"
    }
  },
  "permissions": [
    "<all_urls>",
    "power",
    "storage",
    "unlimitedStorage",
    "system.display",
    "system.cpu",
    "webview",
    "system.network",
    "app.window.fullscreen",
    "serial",
    "audioCapture",
    "videoCapture",
    "system.memory",
    "enterprise.deviceAttributes",
    "audio"
  ]
}