Vedantu Screen Share

Vedantu Screen Share

Screensharing utility for Vedantu learning sessions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vedantu Screen Share",
  "description": "Screensharing utility for Vedantu learning sessions",
  "version": "0.0.4",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "desktopCapture",
    "tabs",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://localhost:8080/*",
        "*://*.vedantu.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:8080/*",
      "*://*.vedantu.com/*"
    ]
  }
}