Google Meet Volume Control

Client side volume control for Google Meet

Google Meet Volume Controlคืออะไร?

Google Meet Volume Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://matthew-cash.com และคุณลักษณะหลักของมันคือ "Client side volume control for Google Meet"

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

screenshot

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

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

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

                        Set a global volume for all Meet participants (client side).

Click the extension's icon while in Google Meet to adjust the volume using a simple slider.                    

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

ชื่อ Google Meet Volume Control Google Meet Volume Control
ID nkbnlgonoekhmldnihfdpakhhjhmdkbd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd
คำอธิบาย Client side volume control for Google Meet
ขนาดไฟล์ 14.06 KB
จำนวนการติดตั้ง 54,008
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2023-06-29
วันที่เผยแพร่ 2020-09-15
คะแนน 4.56/5 รวมทั้งหมด 136 คะแนน
ผู้พัฒนา https://matthew-cash.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/MatthewCash/google-meet-volume-control
URL หน้าช่วยเหลือ https://github.com/MatthewCash/google-meet-volume-control/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Volume Control",
    "description": "Client side volume control for Google Meet",
    "version": "1.2.0",
    "short_name": "Meet Volume",
    "manifest_version": 3,
    "action": {
        "default_popup": "src\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/js\/meet.js"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/js\/background.js"
    },
    "permissions": [
        "storage",
        "background",
        "declarativeContent"
    ]
}