Mute Notifications
Disable all desktop notifications with one click.
Hvad er Mute Notifications?
Mute Notifications er en Chrome-udvidelse udviklet af Ondřej Cífka, og dens hovedfunktion er "Disable all desktop notifications with one click.".
Udvidelsesskærmbilleder
Download Mute Notifications-udvidelses-CRX-fil
Download Mute Notifications-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Mute Notifications |
ID | bmjdeaihnngnnnaldgakphcaanioohgn |
Officiel URL | https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn |
Beskrivelse | Disable all desktop notifications with one click. |
Filstørrelse | 17.44 KB |
Antal Installationer | 5,077 |
Nuværende Version | 0.3 |
Senest Opdateret | 2019-12-20 |
Udgivelsesdato | 2019-12-20 |
Bedømmelse | 4.47/5 Samlet 19 Bedømmelser |
Udvikler | Ondřej Cífka |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/cifkao/chrome-mute-notifications |
Hjælpeside-URL | https://github.com/cifkao/chrome-mute-notifications |
Understøttede Sprog | 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" ] } } |