Mute Notifications
Disable all desktop notifications with one click.
Что такое Mute Notifications?
Mute Notifications - это расширение Chrome, разработанное Ondřej Cífka, и его основная функция - "Disable all desktop notifications with one click.".
Снимки экрана расширения
Скачать файл CRX расширения Mute Notifications
Скачайте файлы расширений Mute Notifications в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension adds a button to Chrome that turns off desktop notifications for all web pages. When the button is clicked again, the original notification settings are restored. Основная информация о расширении
| Название | |
| ID | bmjdeaihnngnnnaldgakphcaanioohgn |
| Официальный URL | https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn |
| Описание | Disable all desktop notifications with one click. |
| Размер файла | 17.44 KB |
| Количество установок | 5,077 |
| Текущая Версия | 0.3 |
| Последнее Обновление | 2019-12-20 |
| Дата публикации | 2019-12-20 |
| Рейтинг | 4.47/5 Всего 19 оценок |
| Разработчик | Ondřej Cífka |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/cifkao/chrome-mute-notifications |
| URL страницы помощи | https://github.com/cifkao/chrome-mute-notifications |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mute Notifications",
"description": "Disable all desktop notifications with one click.",
"version": "0.3",
"icons": {
"128": "logo-128.png",
"48": "logo-48.png"
},
"permissions": [
"contentSettings",
"storage"
],
"browser_action": {
"default_icon": {
"19": "icon-on-19.png",
"38": "icon-on-38.png"
}
},
"background": {
"scripts": [
"background.js"
]
}
} | |