Clevershare

Clevershare

Cast from your Chromebook directly to your Clevertouch interactive Display! This application only works with Clevershare version 2…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Clevershare",
  "short_name": "Clevershare",
  "description": "",
  "version": "2.0.0",
  "minimum_chrome_version": "38",
  "icons": {
    "16": "./assets/16.png",
    "48": "./assets/48.png",
    "128": "./assets/128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "sockets": {
    "tcp": {
      "connect": [
        "*"
      ],
      "send": [
        "*"
      ],
      "onReceive": [
        "*"
      ]
    }
  },
  "permissions": [
    "system.network",
    "desktopCapture",
    "audioCapture",
    "videoCapture",
    "app.window.fullscreen",
    "system.display",
    "storage"
  ]
}