Page change monitor with a sound notification

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

O que é Page change monitor with a sound notification?

Page change monitor with a sound notification é uma extensão do Chrome desenvolvida por Damian Suchodolski, e sua principal característica é "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Page change monitor with a sound notification

Baixe arquivos de extensão Page change monitor with a sound notification no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome 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
Descrição Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Tamanho do Arquivo 43.94 KB
Contagem de Instalações 425
Versão Atual 1.0.0
Última Atualização 2020-05-09
Data de Publicação 2020-05-05
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Damian Suchodolski
Tipo de Pagamento free
Idiomas Suportados 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": [
                ""
            ]
        }
    ]
}