Meet Notifications

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

O que é Meet Notifications?

Meet Notifications é uma extensão do Chrome desenvolvida por DevDiary, e sua principal característica é "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Meet Notifications

Baixe arquivos de extensão Meet Notifications no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        --- วิธีใช้งาน ---
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. 👍                    

Informações Básicas da Extensão

Nome Meet Notifications Meet Notifications
ID lekaeknoegncijhnchifjdnclipppcnp
URL Oficial https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp
Descrição Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Tamanho do Arquivo 19.48 KB
Contagem de Instalações 34
Versão Atual 0.1.5
Última Atualização 2020-06-24
Data de Publicação 2020-06-24
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor DevDiary
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.facebook.com/devdiaryTH
URL da Página de Ajuda https://www.facebook.com/devdiaryTH
URL da Página de Política de Privacidade https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html
Idiomas Suportados 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"
    ]
}