Meet Notifications

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

Что такое Meet Notifications?

Meet Notifications - это расширение Chrome, разработанное DevDiary, и его основная функция - "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Meet Notifications

Скачайте файлы расширений Meet Notifications в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Meet Notifications Meet Notifications
ID lekaeknoegncijhnchifjdnclipppcnp
Официальный URL https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp
Описание Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Размер файла 19.48 KB
Количество установок 34
Текущая Версия 0.1.5
Последнее Обновление 2020-06-24
Дата публикации 2020-06-24
Рейтинг 4.00/5 Всего 2 оценок
Разработчик DevDiary
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.facebook.com/devdiaryTH
URL страницы помощи https://www.facebook.com/devdiaryTH
URL страницы политики конфиденциальности https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html
Поддерживаемые языки 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"
    ]
}