Page change monitor with a sound notification

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

Wat is Page change monitor with a sound notification?

Page change monitor with a sound notification is een Chrome-extensie ontwikkeld door Damian Suchodolski, en de belangrijkste functie is "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Page change monitor with a sound notification

Download Page change monitor with a sound notification-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
Officiële URL https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Beschrijving Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Bestandsgrootte 43.94 KB
Aantal Installaties 425
Huidige Versie 1.0.0
Laatst Bijgewerkt 2020-05-09
Publicatiedatum 2020-05-05
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Damian Suchodolski
Betalingswijze free
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}