Page change monitor with a sound notification

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

Was ist Page change monitor with a sound notification?

Page change monitor with a sound notification ist eine Chrome-Erweiterung, die von Damian Suchodolski entwickelt wurde, und ihr Hauptmerkmal ist "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Erweiterungsscreenshots

screenshot

Page change monitor with a sound notification-Erweiterungs-CRX-Datei herunterladen

Laden Sie Page change monitor with a sound notification-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
Offizielle URL https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Beschreibung Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Dateigröße 43.94 KB
Installationsanzahl 425
Aktuelle Version 1.0.0
Letztes Update 2020-05-09
Veröffentlichungsdatum 2020-05-05
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Damian Suchodolski
Zahlungsart free
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}