Better Notifications - monday.com
Makes monday.com's notification drawer usable!
Was ist Better Notifications - monday.com?
Better Notifications - monday.com ist eine Chrome-Erweiterung, die von Oryan Moshe entwickelt wurde, und ihr Hauptmerkmal ist "Makes monday.com's notification drawer usable!".
Erweiterungsscreenshots
Better Notifications - monday.com-Erweiterungs-CRX-Datei herunterladen
Laden Sie Better Notifications - monday.com-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension allows you to define a set of phrases that are frequently used in notifications sent to you through monday.com, and reorders your notification drawer so those way-to-frequent notifications are smaller / hidden. This also allows you to see a compact view of your notification drawer without setting any phrases (by using extra compact mode) Examples of phrases can be: mentioned your team "$$$$" mentioned "Everyone at $$$$"
Grundlegende Informationen zur Erweiterung
Name | Better Notifications - monday.com |
ID | pndbiclnamhhdppgogjfogfpbhoahkkl |
Offizielle URL | https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl |
Beschreibung | Makes monday.com's notification drawer usable! |
Dateigröße | 17.54 KB |
Installationsanzahl | 1,008 |
Aktuelle Version | 2.1.0 |
Letztes Update | 2019-08-07 |
Veröffentlichungsdatum | 2019-08-07 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Oryan Moshe |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.1.0", "manifest_version": 2, "name": "Better Notifications - monday.com", "description": "Makes monday.com's notification drawer usable!", "author": "Oryan Moshe", "permissions": [ "activeTab", "*:\/\/*.monday.com\/*", "declarativeContent", "storage" ], "icons": { "48": "bell-icon.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "bell-icon.png", "default_popup": "popup.html", "default_title": "Better Notifications - monday.com" }, "content_scripts": [ { "matches": [ "*:\/\/*.monday.com\/*" ], "css": [ "notifications.css" ] } ] } |