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 |
官方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" ] } ] } |