Better Notifications - monday.com

Makes monday.com's notification drawer usable!

Hvad er Better Notifications - monday.com?

Better Notifications - monday.com er en Chrome-udvidelse udviklet af Oryan Moshe, og dens hovedfunktion er "Makes monday.com's notification drawer usable!".

Udvidelsesskærmbilleder

screenshot

Download Better Notifications - monday.com-udvidelses-CRX-fil

Download Better Notifications - monday.com-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Better Notifications - monday.com Better Notifications - monday.com
ID pndbiclnamhhdppgogjfogfpbhoahkkl
Officiel URL https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl
Beskrivelse Makes monday.com's notification drawer usable!
Filstørrelse 17.54 KB
Antal Installationer 1,008
Nuværende Version 2.1.0
Senest Opdateret 2019-08-07
Udgivelsesdato 2019-08-07
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Oryan Moshe
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}