Better Notifications - monday.com
Makes monday.com's notification drawer usable!
O que é Better Notifications - monday.com?
Better Notifications - monday.com é uma extensão do Chrome desenvolvida por Oryan Moshe, e sua principal característica é "Makes monday.com's notification drawer usable!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Better Notifications - monday.com
Baixe arquivos de extensão Better Notifications - monday.com no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 $$$$"
Informações Básicas da Extensão
Nome | Better Notifications - monday.com |
ID | pndbiclnamhhdppgogjfogfpbhoahkkl |
URL Oficial | https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl |
Descrição | Makes monday.com's notification drawer usable! |
Tamanho do Arquivo | 17.54 KB |
Contagem de Instalações | 1,008 |
Versão Atual | 2.1.0 |
Última Atualização | 2019-08-07 |
Data de Publicação | 2019-08-07 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Oryan Moshe |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |