Mute Notifications
Disable all desktop notifications with one click.
Co to jest Mute Notifications?
Mute Notifications to rozszerzenie Chrome opracowane przez Ondřej Cífka, a jego główną funkcją jest „Disable all desktop notifications with one click.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mute Notifications
Pobierz pliki rozszerzeń Mute Notifications w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bmjdeaihnngnnnaldgakphcaanioohgn |
| Oficjalny URL | https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn |
| Opis | Disable all desktop notifications with one click. |
| Rozmiar pliku | 17.44 KB |
| Liczba instalacji | 5,077 |
| Aktualna Wersja | 0.3 |
| Ostatnia Aktualizacja | 2019-12-20 |
| Data Publikacji | 2019-12-20 |
| Ocena | 4.47/5 Łącznie 19 Oceny |
| Deweloper | Ondřej Cífka |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/cifkao/chrome-mute-notifications |
| Adres URL Strony Pomocy | https://github.com/cifkao/chrome-mute-notifications |
| Obsługiwane Języki | 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"
]
}
} | |