Better Notifications - monday.com
Makes monday.com's notification drawer usable!
What is Better Notifications - monday.com?
Better Notifications - monday.com is a Chrome extension developed by Oryan Moshe, and its main feature is "Makes monday.com's notification drawer usable!".
Extension Screenshots
Download Better Notifications - monday.com Extension CRX File
Download Better Notifications - monday.com extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 $$$$"
Extension Basic Information
Name | Better Notifications - monday.com |
ID | pndbiclnamhhdppgogjfogfpbhoahkkl |
Official URL | https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl |
Description | Makes monday.com's notification drawer usable! |
File Size | 17.54 KB |
Installation Count | 1,008 |
Current Version | 2.1.0 |
Last Updated | 2019-08-07 |
Publish Date | 2019-08-07 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Oryan Moshe |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |