Boardroom Demo : Chrome Screen Sharing

Boardroom Demo : Chrome Screen Sharing

This Chrome extension is developed for Boardroom demos. It simply captures the 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": "Boardroom Demo : Chrome Screen Sharing",
  "author": "iZND, Inc.",
  "version": "1.5",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "This Chrome extension is developed for Boardroom demos. It simply captures the content of your screen.",
  "homepage_url": "https://join.boardroom.work/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "https://*.boardroom.work/*"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "https://*.boardroom.work/*",
        "https://*.boardroom.work.herokudns.com/*"
      ]
    }
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}