Page change monitor with a sound notification

Monitors the site for the changes, it is useful for sound notification for MS Teams and others

Что такое Page change monitor with a sound notification?

Page change monitor with a sound notification - это расширение Chrome, разработанное Damian Suchodolski, и его основная функция - "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

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

screenshot

Скачать файл CRX расширения Page change monitor with a sound notification

Скачайте файлы расширений Page change monitor with a sound notification в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Monitors DOM elements for any change. It is able to spot AJAX reload. When there is one you will get a sound notification                    

Основная информация о расширении

Название Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
Официальный URL https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Описание Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Размер файла 43.94 KB
Количество установок 425
Текущая Версия 1.0.0
Последнее Обновление 2020-05-09
Дата публикации 2020-05-05
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Damian Suchodolski
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page change monitor with a sound notification",
    "version": "1.0.0",
    "permissions": [
        "",
        "storage"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "description": "Monitors the site for the changes, it is useful for sound notification for MS Teams and others",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "browser_action": {
        "name": "Sort",
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "120": "icon120.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "customStyles.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}