Virtual Classroom Question Manager

Virtual Classroom Question Manager

This unofficial extension provides a dashboard to manage questions asked in the Zoom chat.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Virtual Classroom Question Manager",
  "version": "0.61",
  "description": "This unofficial extension provides a dashboard to manage questions asked in the Zoom chat. ",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.zoom.us/wc/*"
      ],
      "js": [
        "jquery-3.4.1.js",
        "content.js",
        "popper.min.js",
        "bootstrap.min.js"
      ],
      "css": [
        "bootstrap.min.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "viewerWindow.html",
    "jquery-3.4.1.js",
    "popper.min.js",
    "bootstrap.min.js",
    "bootstrap.min.css"
  ],
  "background": {
    "scripts": [
      "jquery-3.4.1.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "name": "Click to start the Zoom helper."
  },
  "icons": {
    "16": "icon-16x16.png",
    "48": "icon-48x48.png",
    "128": "icon-128x128.png"
  }
}