Better Notifications - monday.com

Makes monday.com's notification drawer usable!

Что такое Better Notifications - monday.com?

Better Notifications - monday.com - это расширение Chrome, разработанное Oryan Moshe, и его основная функция - "Makes monday.com's notification drawer usable!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Better Notifications - monday.com

Скачайте файлы расширений Better Notifications - monday.com в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
            ]
        }
    ]
}