Meet Chat Notifications

Meet Chat Notifications

Что такое Meet Chat Notifications?

Meet Chat Notifications - это расширение Chrome, разработанное ExpressTech, и его основная функция - "Meet Chat Notifications".

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

screenshot

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

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

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

                        This extension is used to show a notification for when someone uses the chat in Google Meet.                    

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

Название Meet Chat Notifications Meet Chat Notifications
ID pjhpmbjmhmajhgjhkojockbjjapppdbe
Официальный URL https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe
Описание Meet Chat Notifications
Размер файла 45.63 KB
Количество установок 8,630
Текущая Версия 2.1.0
Последнее Обновление 2021-06-22
Дата публикации 2020-05-18
Рейтинг 3.60/5 Всего 25 оценок
Разработчик ExpressTech
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://mycodding.com/
URL страницы помощи https://mycodding.com/privacy-policy/
Поддерживаемые языки en,en-US,pt-BR,pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.1.0",
    "name": "Meet Chat Notifications",
    "description": "Meet Chat Notifications",
    "author": "SmolBren",
    "permissions": [
        "notifications"
    ],
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "36": "icon36.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "15": "icon16.png",
            "24": "icon24.png",
            "36": "icon36.png",
            "48": "icon48.png"
        },
        "default_title": "Meet Chat Notification",
        "default_popup": "index.html"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}