SHARP Display Connect

SHARP Display Connect

This application enables data transfer and screen share between PC and Chromebook.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_ApplicationName__",
  "default_locale": "en",
  "version": "2.2.0.2",
  "minimum_chrome_version": "45",
  "description": "__MSG_ApplicationDescription__",
  "icons": {
    "16": "/icons/icon_16x16.png",
    "32": "/icons/icon_32x32.png",
    "128": "/icons/icon_128x128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "/js/background.js"
      ]
    }
  },
  "permissions": [
    "identity",
    "identity.email",
    "alwaysOnTopWindows",
    "unlimitedStorage",
    "system.network",
    "storage",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    {
      "socket": [
        "network-state",
        "tcp-listen:*:*",
        "tcp-connect:*:*",
        "resolve-host",
        "udp-bind:*:*",
        "udp-send-to:*:*",
        "multicastMembership:*:*"
      ]
    }
  ],
  "sockets": {
    "udp": {
      "bind": [
        "*:*"
      ],
      "send": [
        "*:*"
      ],
      "multicastMembership": [
        ""
      ]
    },
    "tcp": {
      "connect": [
        "*:*"
      ],
      "send": [
        "*:*"
      ],
      "bind": [
        "*:*"
      ],
      "receive": [
        "*:*"
      ]
    },
    "tcpServer": {
      "listen": [
        "*:*"
      ],
      "bind": [
        "*:*"
      ],
      "send": [
        "*:*"
      ],
      "receive": [
        "*:*"
      ]
    }
  }
}