Better Notifications - monday.com
Makes monday.com's notification drawer usable!
Τι είναι το Better Notifications - monday.com;
Το Better Notifications - monday.com είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Oryan Moshe, και η κύρια λειτουργία του είναι "Makes monday.com's notification drawer usable!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Better Notifications - monday.com
Λήψη αρχείων επέκτασης Better Notifications - monday.com σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 $$$$"
Βασικές Πληροφορίες Επέκτασης
Όνομα | Better Notifications - monday.com |
ID | pndbiclnamhhdppgogjfogfpbhoahkkl |
Επίσημο URL | https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl |
Περιγραφή | Makes monday.com's notification drawer usable! |
Μέγεθος Αρχείου | 17.54 KB |
Αριθμός Εγκαταστάσεων | 1,008 |
Τρέχουσα Έκδοση | 2.1.0 |
Τελευταία Ενημέρωση | 2019-08-07 |
Ημερομηνία Δημοσίευσης | 2019-08-07 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Oryan Moshe |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |