Google Meet - Jabra Call Control support

Adds Jabra call control support to Google Meet

Google Meet - Jabra Call Control supportคืออะไร?

Google Meet - Jabra Call Control support เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alexandr Balan และคุณลักษณะหลักของมันคือ "Adds Jabra call control support to Google Meet"

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

screenshot

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

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

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

                        Main features:
- Auto busy light on during meetings
- Sync device mute status with Google Meet mute button
- Mute Google Meet from the device
- Exit the meeting using the hang-up button on the device

Supports devices working through Jabra Link dongle or USB; controlling devices connected directly to Bluetooth is not yet supported.

**IMPORTANT NOTE**: You'll need to provide HID permissions to allow the extension to work with your Jabra device. Please click on the extension icon while being on the Google Meet page to connect.

Tested with:
Jabra Evolve2 85 / Jabra Link 380
Jabra Evolve2 75 / Jabra Link 380
Jabra Elite 85h / Jabra Link 370
Jabra Evolve 40
Jabra Speak 510
Jabra Speak 750

Please feel free to submit issues and suggestions to 
https://github.com/balansse/google-meet-jabra/issues                    

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

ชื่อ Google Meet - Jabra Call Control support Google Meet - Jabra Call Control support
ID jjnlhhhmaidobmeghnnmkbhkebpjhohp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-meet-jabra-call-co/jjnlhhhmaidobmeghnnmkbhkebpjhohp
คำอธิบาย Adds Jabra call control support to Google Meet
ขนาดไฟล์ 52.31 KB
จำนวนการติดตั้ง 2,185
เวอร์ชันปัจจุบัน 1.4.1
อัปเดตครั้งล่าสุด 2023-07-12
วันที่เผยแพร่ 2022-03-23
คะแนน 4.67/5 รวมทั้งหมด 18 คะแนน
ผู้พัฒนา Alexandr Balan
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/balansse/google-meet-jabra
URL หน้าช่วยเหลือ https://github.com/balansse/google-meet-jabra/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Adds Jabra call control support to Google Meet",
    "version": "1.4.1",
    "manifest_version": 3,
    "name": "Google Meet - Jabra Call Control support",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_title": "Connect to Jabra device"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "hid_dialog.html",
                "content.styles.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}