Meet Notifications

Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.

Co je Meet Notifications?

Meet Notifications je rozšíření Chrome vyvinuté DevDiary, a jeho hlavní funkcí je „Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Meet Notifications

Stáhněte si soubory rozšíření Meet Notifications ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        --- วิธีใช้งาน ---
1. คลิกที่ icon "Meet Notifications"
2. คลิกที่ switch button ให้ปุ่มเปลี่ยนสถานะเป็นสีฟ้า
เพียงเท่านี้ก็สามารถใช้งาน Meet Notifications ได้แล้ว 👍

--- How to use ---
1. Click on the icon "Meet Notifications".
2. Click the switch button to change the status to blue.
That's it. You can use the Meet Notifications. 👍                    

Základní Informace o Rozšíření

Název Meet Notifications Meet Notifications
ID lekaeknoegncijhnchifjdnclipppcnp
Oficiální URL https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp
Popis Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Velikost souboru 19.48 KB
Počet instalací 34
Aktuální Verze 0.1.5
Poslední Aktualizace 2020-06-24
Datum Vydání 2020-06-24
Hodnocení 4.00/5 Celkem 2 Hodnocení
Vývojář DevDiary
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.facebook.com/devdiaryTH
URL Stránky Nápovědy https://www.facebook.com/devdiaryTH
URL Stránky Zásad Ochrany Soukromí https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Notifications",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Meet Notifications improves the Google Meet experience with \"Notification\" when the audience sent the message in the room.",
    "author": "Ic3berg",
    "content_security_policy": "default-src 'self'",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Meet Notifications"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js",
                "controller.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "content.js",
        "controller.js"
    ]
}