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은(는) Ties de Kok에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This unofficial extension provides a dashboard to manage questions asked in the Zoom chat."입니다.
확장 프로그램 스크린샷
Virtual Classroom Question Manager 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } |