ON24 Screensharing Extension

ON24 Screensharing Extension

Enables screen sharing with ON24 platform

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ON24 Screensharing Extension",
  "description": "Enables screen sharing with ON24 platform",
  "version": "0.0.2",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "permissions": [
    "desktopCapture",
    "https://*/*",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "options_page": "options.html"
}