Quiz Master for Google Meet

Turn any Google Meet into a Quiz Meet

Quiz Master for Google Meetคืออะไร?

Quiz Master for Google Meet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://toaster.co และคุณลักษณะหลักของมันคือ "Turn any Google Meet into a Quiz Meet"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quiz Master for Google Meet

ดาวน์โหลดไฟล์ส่วนขยาย Quiz Master for Google Meet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a button to the bottom right navigation bar in Google Meet. It is activated by clicking the "dice" icon (see screenshots). All participants in the meeting with the Google Meet Quiz Master extension installed will be listed as players. One participant can take on the "Quiz Master" role to ask questions, give points and reset the game. 

This extension was created to enhance Google Meet to encourage social interaction and play.

FEATURES
- Play in realtime with your friends and colleagues
- Quiz Master: control when people can answer, reset scores and more.
- Keep score of who's winning
- Buzzer: fastest person answers first

PRIVACY POLICY
This extension temporarily collects some basic user data and game data to make the extension function. The data collected is deleted immediately when you leave the meeting or close Quiz Master during an active meeting. If this is insufficient, please contact us.

HOW TO USE
1) Install the Chrome extension
2) Join a Google Meet and click the "dice" button at the top right (next to chat & participant list) to enable Quiz mode in Google Meet.
3) Choose to be the Quiz Master or Player.


FEEDBACK AND FEATURE REQUESTS
We'd love to hear your feedback or features requests – head over to github.com/toasterco/Quiz-Master-for-Google-Meet/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Quiz Master for Google Meet Quiz Master for Google Meet
ID bhbpelaafipkggmegknilkicjeilillb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quiz-master-for-google-me/bhbpelaafipkggmegknilkicjeilillb
คำอธิบาย Turn any Google Meet into a Quiz Meet
ขนาดไฟล์ 151 KB
จำนวนการติดตั้ง 14,332
เวอร์ชันปัจจุบัน 0.7.10
อัปเดตครั้งล่าสุด 2022-07-19
วันที่เผยแพร่ 2020-07-02
คะแนน 2.10/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา https://toaster.co
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/toasterco/Quiz-Master-for-Google-Meet/
URL หน้าช่วยเหลือ https://github.com/toasterco/Quiz-Master-for-Google-Meet/issues
URL หน้านโยบายความเป็นส่วนตัว https://toaster.co/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quiz Master for Google Meet",
    "description": "Turn any Google Meet into a Quiz Meet",
    "version": "0.7.10",
    "icons": {
        "16": "images\/icons\/app-icon-16x16.png",
        "32": "images\/icons\/app-icon-32x32.png",
        "48": "images\/icons\/app-icon-48x48.png",
        "128": "images\/icons\/app-icon-128x128.png",
        "192": "images\/icons\/app-icon-192x192.png",
        "256": "images\/icons\/app-icon-256x256.png"
    },
    "browser_action": {
        "default_title": "Quiz Master for Google Meet",
        "default_icon": "images\/icons\/app-icon-128x128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                ".\/js\/browser-polyfill.js",
                ".\/js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "images\/icons\/*.png",
        "css\/animations.css",
        "css\/quizmaster.css",
        "js\/settings-overlay.js",
        "settings-template.html",
        "audio\/*.ogg",
        "audio\/*.mp3",
        "trivia\/*.json"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'"
}