Better Notifications - monday.com
Makes monday.com's notification drawer usable!
Co to jest Better Notifications - monday.com?
Better Notifications - monday.com to rozszerzenie Chrome opracowane przez Oryan Moshe, a jego główną funkcją jest „Makes monday.com's notification drawer usable!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Better Notifications - monday.com
Pobierz pliki rozszerzeń Better Notifications - monday.com w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 $$$$"
Podstawowe informacje o rozszerzeniu
Nazwa | Better Notifications - monday.com |
ID | pndbiclnamhhdppgogjfogfpbhoahkkl |
Oficjalny URL | https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl |
Opis | Makes monday.com's notification drawer usable! |
Rozmiar pliku | 17.54 KB |
Liczba instalacji | 1,008 |
Aktualna Wersja | 2.1.0 |
Ostatnia Aktualizacja | 2019-08-07 |
Data Publikacji | 2019-08-07 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Oryan Moshe |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |