Huzza Screen Sharing

Huzza Screen Sharing

This Chrome extension is developed for https://huzza.io/. It doesn't do anything except capture content of your screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Huzza Screen Sharing",
  "author": "Huzza Media, Inc.",
  "version": "0.0.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This Chrome extension is developed for https://huzza.io/. It doesn't do anything except capture content of your screen.",
  "homepage_url": "https://huzza.io/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "https://*.huzza.io/*"
    ]
  },
  "icons": {
    "16": "huzza16.png",
    "48": "huzza48.png",
    "128": "huzza128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}