Screen Sharing

Screen Sharing

Designed for online presentations and tutorials - An agent can share his/her computer screen for a customer to see during a chat.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screen Sharing",
  "author": "UC Now Communication Ltd",
  "version": "1.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Designed for online presentations and tutorials - An agent can share his/her computer screen for a customer to see during a chat.",
  "homepage_url": "https://www.u-c-now.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "https://localhost:8443/*"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture",
    "tabs"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}