V-CUBE Screen Share

V-CUBE Screen Share

Enables screen sharing feature in V-CUBE Meeting 5 browser version

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "manifest_version": 2,
  "version": "1.0.5",
  "icons": {
    "128": "icon128.png"
  },
  "permissions": [
    "desktopCapture",
    "https://*.vcube.net/",
    "https://*.vcube.com/",
    "https://*.vcubeone.net/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.vcube.net/*",
        "https://*.vcube.com/*",
        "https://*.vcubeone.net/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ]
}