Better Notifications - monday.com
Makes monday.com's notification drawer usable!
什麼是Better Notifications - monday.com?
Better Notifications - monday.com是由Oryan Moshe開發的Chrome擴展程式,該擴展的主要功能是“Makes monday.com's notification drawer usable!”。
擴展截圖
下載Better Notifications - monday.com擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |