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 |
Eメール | [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" ] } ] } |