ICDN.VIDEO Direct Screenshare Room Extension

ICDN.VIDEO Direct Screenshare Room Extension

ICDN.VIDEO Screen Sharing allows you share screens

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ICDN.VIDEO Direct Screenshare Room Extension",
  "author": "NETSTAIRS",
  "description": "ICDN.VIDEO Screen Sharing allows you share screens",
  "version": "1.0.0",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://icdn.video/*"
      ]
    }
  ],
  "homepage_url": "https://icdn.video/",
  "externally_connectable": {
    "matches": [
      "https://icdn.video/*"
    ]
  }
}