Desktop Notifications For Google Meet

Versatile Desktop Notifications For Messages In Google Meet

Desktop Notifications For Google Meetคืออะไร?

Desktop Notifications For Google Meet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย AkarshR และคุณลักษณะหลักของมันคือ "Versatile Desktop Notifications For Messages In Google Meet"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Desktop Notifications For Google Meet

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

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

                        Connecting the missing link between in-call messages and notifications.

Tired of switching between browser and presentation everytime you get a message in Google meet?
Now enjoy getting messages delivered right to you as desktop notifications.

->Activates automatically as soon as you enter a meeting.
->You can enable/disable this feature with single click of a button.
->Forestalls the need to open the meeting tab to read messages.
->Instantly opens the Google Meet window when the notification is clicked.
->Helpful for lecturers to read and respond to queries without interruption.

Note: Please make sure to 'allow' notifications when prompted, or enable manually by clicking on 'lock' beside omnibox and allow notifications on Google Meet. This is a one-time step. This extension won't work if you have 'blocked' notifications.

Note: Windows 10 users might have to change 'Focus Assist' settings to get notifications while they're in an full-screen application.

Google Meet is a trademark of Google Inc.
Use of this trademark is subject to Google Permissions.                    

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

ชื่อ Desktop Notifications For Google Meet Desktop Notifications For Google Meet
ID fahbecgeidbeglanfmppjklpbhmmbnnp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/desktop-notifications-for/fahbecgeidbeglanfmppjklpbhmmbnnp
คำอธิบาย Versatile Desktop Notifications For Messages In Google Meet
ขนาดไฟล์ 210 KB
จำนวนการติดตั้ง 239
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2022-02-24
วันที่เผยแพร่ 2021-06-26
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา AkarshR
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Desktop Notifications For Google Meet",
    "version": "1.2",
    "description": "Versatile Desktop Notifications For Messages In Google Meet",
    "author": "AkarshR",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_title": "Google Meet Desktop Notifications",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*-*-*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/meet.google.com\/*-*-*",
        "notifications"
    ],
    "web_accessible_resources": [
        "googlemeet.png"
    ]
}