Page change monitor with a sound notification

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

Hvad er Page change monitor with a sound notification?

Page change monitor with a sound notification er en Chrome-udvidelse udviklet af Damian Suchodolski, og dens hovedfunktion er "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Udvidelsesskærmbilleder

screenshot

Download Page change monitor with a sound notification-udvidelses-CRX-fil

Download Page change monitor with a sound notification-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
Officiel URL https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Beskrivelse Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Filstørrelse 43.94 KB
Antal Installationer 425
Nuværende Version 1.0.0
Senest Opdateret 2020-05-09
Udgivelsesdato 2020-05-05
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Damian Suchodolski
Betalingsmetode free
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}