Notification Muter

This extension will mute notifications

Что такое Notification Muter?

Notification Muter - это расширение Chrome, разработанное mfreedman, и его основная функция - "This extension will mute notifications".

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

screenshot

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

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

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

                        This will block notifications and popups for all urls.

It will also temporarily remove javascript alerts for calendar.google.com

When unmuted will stop this extension from managing your notifications & popups.                    

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

Название Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
Официальный URL https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
Описание This extension will mute notifications
Размер файла 27.62 KB
Количество установок 176
Текущая Версия 0.0.3.18
Последнее Обновление 2017-06-07
Дата публикации 2017-06-07
Рейтинг 3.50/5 Всего 2 оценок
Разработчик mfreedman
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mikfreedman/notification-muter
URL страницы помощи https://github.com/mikfreedman/notification-muter/blob/master/README.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "notification-muter",
    "name": "Notification Muter",
    "version": "0.0.3.18",
    "manifest_version": 2,
    "description": "This extension will mute notifications",
    "homepage_url": "http:\/\/github.com\/mikfreedman\/notification-muter",
    "icons": {
        "16": "icons\/bell.png",
        "48": "icons\/bell.png",
        "128": "icons\/bell.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/notificationMuter.js",
            "src\/popupMuter.js",
            "src\/alertMuter.js",
            "src\/clickListener.js",
            "src\/iconListener.js",
            "src\/reinjectListener.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/bell.png",
        "default_title": "mute\/unmute notifications"
    },
    "permissions": [
        "https:\/\/calendar.google.com\/*",
        "http:\/\/calendar.google.com\/*",
        "contentSettings",
        "storage"
    ],
    "web_accessible_resources": [
        "icons\/no-bell.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}