Better Notifications - monday.com

Makes monday.com's notification drawer usable!

¿Qué es Better Notifications - monday.com?

Better Notifications - monday.com es una extensión de Chrome desarrollada por Oryan Moshe, y su función principal es "Makes monday.com's notification drawer usable!".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Better Notifications - monday.com

Descarga archivos de extensión Better Notifications - monday.com en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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 $$$$"                    

Información Básica de la Extensión

Nombre Better Notifications - monday.com Better Notifications - monday.com
ID pndbiclnamhhdppgogjfogfpbhoahkkl
URL Oficial https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl
Descripción Makes monday.com's notification drawer usable!
Tamaño del Archivo 17.54 KB
Cantidad de Instalaciones 1,008
Versión Actual 2.1.0
Última Actualización 2019-08-07
Fecha de Publicación 2019-08-07
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Oryan Moshe
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}