Mute Notifications
Disable all desktop notifications with one click.
Qu'est-ce que Mute Notifications ?
Mute Notifications est une extension Chrome développée par Ondřej Cífka, et sa fonction principale est "Disable all desktop notifications with one click.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mute Notifications
Téléchargez les fichiers d'extension Mute Notifications au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Mute Notifications |
ID | bmjdeaihnngnnnaldgakphcaanioohgn |
URL Officiel | https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn |
Description | Disable all desktop notifications with one click. |
Taille du Fichier | 17.44 KB |
Nombre d'Installations | 5,077 |
Version Actuelle | 0.3 |
Dernière Mise à Jour | 2019-12-20 |
Date de Publication | 2019-12-20 |
Évaluation | 4.47/5 Total 19 Évaluations |
Développeur | Ondřej Cífka |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/cifkao/chrome-mute-notifications |
URL de la Page d'Aide | https://github.com/cifkao/chrome-mute-notifications |
Langues Prises en Charge | 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" ] } } |