Google Meet Presenter Mode

Choose whether you can be muted while presenting in Google Meet

Google Meet Presenter Modeคืออะไร?

Google Meet Presenter Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Petri Koivula และคุณลักษณะหลักของมันคือ "Choose whether you can be muted while presenting in Google Meet"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Presenter Mode

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

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

                        Gives you a choice of whether other Google Meet users can mute you or not.

Intended for use by teachers and other presenters who might get griefed by anonymous users muting them in Meet.                    

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

ชื่อ Google Meet Presenter Mode Google Meet Presenter Mode
ID fiidmaaecmjkhpfinfkdcabglcmghnaa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa
คำอธิบาย Choose whether you can be muted while presenting in Google Meet
ขนาดไฟล์ 6.03 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2020-04-14
วันที่เผยแพร่ 2020-04-14
คะแนน 4.29/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา Petri Koivula
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitlab.com/PKJedi/meet-presenter
URL หน้าช่วยเหลือ https://gitlab.com/PKJedi/meet-presenter/-/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Presenter Mode",
    "short_name": "Presenter Mode",
    "version": "0.0.2",
    "description": "Choose whether you can be muted while presenting in Google Meet",
    "page_action": {
        "default_icon": {
            "32": "assets\/icon_off_32.png"
        },
        "default_title": "Disabled"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/meet.google.com\/*"
    ]
}