Page change monitor with a sound notification

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

¿Qué es Page change monitor with a sound notification?

Page change monitor with a sound notification es una extensión de Chrome desarrollada por Damian Suchodolski, y su función principal es "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Page change monitor with a sound notification

Descarga archivos de extensión Page change monitor with a sound notification en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
URL Oficial https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Descripción Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Tamaño del Archivo 43.94 KB
Cantidad de Instalaciones 425
Versión Actual 1.0.0
Última Actualización 2020-05-09
Fecha de Publicación 2020-05-05
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Damian Suchodolski
Tipo de Pago free
Idiomas Soportados 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": [
                ""
            ]
        }
    ]
}