Better Notifications - monday.com
Makes monday.com's notification drawer usable!
Vad är Better Notifications - monday.com?
Better Notifications - monday.com är en Chrome-tillägg utvecklad av Oryan Moshe, och dess huvudfunktion är "Makes monday.com's notification drawer usable!".
Tilläggsskärmbilder
Ladda ner Better Notifications - monday.com-förlängningens CRX-fil
Ladda ner Better Notifications - monday.com-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 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 $$$$"
Grundläggande Information om Tillägg
Namn | Better Notifications - monday.com |
ID | pndbiclnamhhdppgogjfogfpbhoahkkl |
Officiell webbadress | https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl |
Beskrivning | Makes monday.com's notification drawer usable! |
Filstorlek | 17.54 KB |
Antal Installationer | 1,008 |
Aktuell Version | 2.1.0 |
Senast Uppdaterad | 2019-08-07 |
Publiceringsdatum | 2019-08-07 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Oryan Moshe |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |