Page change monitor with a sound notification

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

Co to jest Page change monitor with a sound notification?

Page change monitor with a sound notification to rozszerzenie Chrome opracowane przez Damian Suchodolski, a jego główną funkcją jest „Monitors the site for the changes, it is useful for sound notification for MS Teams and others”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Page change monitor with a sound notification

Pobierz pliki rozszerzeń Page change monitor with a sound notification w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
Oficjalny URL https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Opis Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Rozmiar pliku 43.94 KB
Liczba instalacji 425
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-05-09
Data Publikacji 2020-05-05
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Damian Suchodolski
Typ Płatności free
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}