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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |