CallRocket Desktop Streamer

CallRocket Desktop Streamer

Stream your desktop into meetings via https://x.callrocket.net

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CallRocket Desktop Streamer",
  "author": "James Douglas",
  "description": "Stream your desktop into meetings via https://x.callrocket.net",
  "homepage_url": "https://x.callrocket.net",
  "version": "0.2.5",
  "minimum_chrome_version": "34",
  "icons": {
    "16": "favicon-16.png",
    "32": "favicon-32.png",
    "48": "favicon-48.png",
    "64": "favicon-64.png",
    "96": "favicon-96.png",
    "128": "favicon-128.png",
    "256": "favicon-256.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "desktopCapture"
  ],
  "externally_connectable": {
    "matches": [
      "*://x.callrocket.net/*"
    ],
    "web_accessible_resources": [
      "icon.png"
    ]
  }
}