Better Notifications - monday.com

Makes monday.com's notification drawer usable!

Better Notifications - monday.com क्या है?

Better Notifications - monday.com Oryan Moshe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes monday.com's notification drawer usable!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Better Notifications - monday.com एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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
ईमेल [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"
            ]
        }
    ]
}