Sylaps - Screen-share

Sylaps - Screen-share

Share your screen from Sylaps Client using Chrome with this extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sylaps - Screen-share",
  "short_name": "Sylaps Screen-share",
  "description": "Share your screen from Sylaps Client using Chrome with this extension",
  "version": "0.5",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "homepage_url": "https://sylaps.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*/*"
    ]
  },
  "icons": {
    "16": "Icon-16.png",
    "128": "Icon-128.png"
  },
  "permissions": [
    "unlimitedStorage",
    "notifications",
    "desktopCapture"
  ]
}