Verbling Screensharing Extension

Verbling Screensharing Extension

Share your screen / desktop with other Verbling users.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Verbling Screensharing Extension",
  "description": "Share your screen / desktop with other Verbling users.",
  "version": "1.5.0",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.verbling.com/*",
        "https://verbling.dev:8082/*",
        "https://verbling.test:8082/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "permissions": [
    "desktopCapture",
    "https://*.verbling.com/*",
    "https://verbling.dev:8082/*",
    "https://verbling.test:8082/*"
  ]
}