Ahoy! Conference screen sharing

Ahoy! Conference screen sharing

Sharing your screen (chrome tab, window or desktop) to an Ahoy! Conference.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ahoy! Conference screen sharing",
  "version": "1.7",
  "manifest_version": 2,
  "description": "Sharing your screen (chrome tab, window or desktop) to an Ahoy! Conference.",
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "browser_action": {
    "default_icon": "logo48.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "tabCapture",
    "activeTab",
    "storage",
    "desktopCapture"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ]
}