Virtual Classroom Question Manager

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

Τι είναι το Virtual Classroom Question Manager;

Το Virtual Classroom Question Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ties de Kok, και η κύρια λειτουργία του είναι "This unofficial extension provides a dashboard to manage questions asked in the Zoom chat.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Virtual Classroom Question Manager

Λήψη αρχείων επέκτασης Virtual Classroom Question Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension provides a dashboard to manage questions asked in the Zoom chat. 
It is primarily designed for teachers that are teaching online classes via Zoom. 

Details:

* Provides a dashboard interface that sits on top of a Zoom web session. It does not communicate with any external sources, nor does it story any data. It only uses the information that is already exposed through the Chrome tab. 
* Students can ask questions by prepending their question with "!question" in the Zoom chat. You can manage these questions by highlighting them as answered and moving them to the history so that they are no longer on your screen. 
* Can be run on a second monitor or can be run on a second device (such as a spare laptop). Only requirement is internet connectivity + the ability to use Chrome extensions. 
* Also provides a microphone volume meter to monitor your audio levels. If you are using a tool such as ManyCam you can also show your webcam to monitor whether you are in frame. 
* Open source, find the code on the GitHub repository which is linked below. 

For instructions on how to use, see the GitHub page: https://github.com/TiesdeKok/zoom-question-manager

For questions or suggestions, feel free to open an issue on the GitHub page or contact me at tdekok (at) uw.edu                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Virtual Classroom Question Manager Virtual Classroom Question Manager
ID babjamahlgjbgacemlagcpohencmghen
Επίσημο URL https://chromewebstore.google.com/detail/virtual-classroom-questio/babjamahlgjbgacemlagcpohencmghen
Περιγραφή This unofficial extension provides a dashboard to manage questions asked in the Zoom chat.
Μέγεθος Αρχείου 217 KB
Αριθμός Εγκαταστάσεων 131
Τρέχουσα Έκδοση 0.61
Τελευταία Ενημέρωση 2021-03-29
Ημερομηνία Δημοσίευσης 2020-04-06
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Ties de Kok
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/TiesdeKok/zoom-question-manager
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/TiesdeKok/zoom-question-manager
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/TiesdeKok/chat-gpt-jupyter-extension/blob/main/privacy_policy_for_extension.md
Υποστηριζόμενες Γλώσσες en
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"
    }
}