Better Notifications - monday.com

Makes monday.com's notification drawer usable!

Qu'est-ce que Better Notifications - monday.com ?

Better Notifications - monday.com est une extension Chrome développée par Oryan Moshe, et sa fonction principale est "Makes monday.com's notification drawer usable!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Better Notifications - monday.com

Téléchargez les fichiers d'extension Better Notifications - monday.com au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Better Notifications - monday.com Better Notifications - monday.com
ID pndbiclnamhhdppgogjfogfpbhoahkkl
URL Officiel https://chromewebstore.google.com/detail/better-notifications-mond/pndbiclnamhhdppgogjfogfpbhoahkkl
Description Makes monday.com's notification drawer usable!
Taille du Fichier 17.54 KB
Nombre d'Installations 1,008
Version Actuelle 2.1.0
Dernière Mise à Jour 2019-08-07
Date de Publication 2019-08-07
Évaluation 5.00/5 Total 1 Évaluations
Développeur Oryan Moshe
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}