Notification Muter
This extension will mute notifications
Co je Notification Muter?
Notification Muter je rozšíření Chrome vyvinuté mfreedman, a jeho hlavní funkcí je „This extension will mute notifications“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Notification Muter
Stáhněte si soubory rozšíření Notification Muter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This will block notifications and popups for all urls. It will also temporarily remove javascript alerts for calendar.google.com When unmuted will stop this extension from managing your notifications & popups.
Základní Informace o Rozšíření
Název | |
ID | nadnegkhgmdkedmcmobengbmacbngpma |
Oficiální URL | https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma |
Popis | This extension will mute notifications |
Velikost souboru | 27.62 KB |
Počet instalací | 176 |
Aktuální Verze | 0.0.3.18 |
Poslední Aktualizace | 2017-06-07 |
Datum Vydání | 2017-06-07 |
Hodnocení | 3.50/5 Celkem 2 Hodnocení |
Vývojář | mfreedman |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/mikfreedman/notification-muter |
URL Stránky Nápovědy | https://github.com/mikfreedman/notification-muter/blob/master/README.md |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "short_name": "notification-muter", "name": "Notification Muter", "version": "0.0.3.18", "manifest_version": 2, "description": "This extension will mute notifications", "homepage_url": "http:\/\/github.com\/mikfreedman\/notification-muter", "icons": { "16": "icons\/bell.png", "48": "icons\/bell.png", "128": "icons\/bell.png" }, "default_locale": "en", "background": { "scripts": [ "src\/notificationMuter.js", "src\/popupMuter.js", "src\/alertMuter.js", "src\/clickListener.js", "src\/iconListener.js", "src\/reinjectListener.js", "src\/background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/bell.png", "default_title": "mute\/unmute notifications" }, "permissions": [ "https:\/\/calendar.google.com\/*", "http:\/\/calendar.google.com\/*", "contentSettings", "storage" ], "web_accessible_resources": [ "icons\/no-bell.png" ], "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*", "http:\/\/calendar.google.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |