Page change monitor with a sound notification

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

Cos'è Page change monitor with a sound notification?

Page change monitor with a sound notification è un'estensione di Chrome sviluppata da Damian Suchodolski, e la sua funzione principale è "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Page change monitor with a sound notification

Scarica i file di estensione Page change monitor with a sound notification in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
URL Ufficiale https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Descrizione Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Dimensione del File 43.94 KB
Conteggio Installazioni 425
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-05-09
Data di Pubblicazione 2020-05-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Damian Suchodolski
Tipo di Pagamento free
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}