Mute Notifications
Disable all desktop notifications with one click.
Vad är Mute Notifications?
Mute Notifications är en Chrome-tillägg utvecklad av Ondřej Cífka, och dess huvudfunktion är "Disable all desktop notifications with one click.".
Tilläggsskärmbilder
Ladda ner Mute Notifications-förlängningens CRX-fil
Ladda ner Mute Notifications-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Mute Notifications |
ID | bmjdeaihnngnnnaldgakphcaanioohgn |
Officiell webbadress | https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn |
Beskrivning | Disable all desktop notifications with one click. |
Filstorlek | 17.44 KB |
Antal Installationer | 5,077 |
Aktuell Version | 0.3 |
Senast Uppdaterad | 2019-12-20 |
Publiceringsdatum | 2019-12-20 |
Betyg | 4.47/5 Totalt 19 Betyg |
Utvecklare | Ondřej Cífka |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/cifkao/chrome-mute-notifications |
Hjälpsida URL | https://github.com/cifkao/chrome-mute-notifications |
Stödda Språk | 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" ] } } |