Qutor Screen Sharing

Qutor Screen Sharing

This Chrome extension is developed primary for https://qutor.com/, It is only used for screen sharing purpose and nothing else.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Qutor Screen Sharing",
  "author": "Qutor, Inc.",
  "version": "3.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This Chrome extension is developed primary for https://qutor.com/, It is only used for screen sharing purpose and nothing else.",
  "homepage_url": "https://qutor.com/",
  "background": {
    "scripts": [
      "screenshare.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "https://qutor.com/*",
      "https://*.qutor.com/*",
      "https://localhost:3000/*"
    ]
  },
  "icons": {
    "128": "img/icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "img/icon.png"
  ]
}