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'est-ce que Page change monitor with a sound notification ?

Page change monitor with a sound notification est une extension Chrome développée par Damian Suchodolski, et sa fonction principale est "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Page change monitor with a sound notification

Téléchargez les fichiers d'extension Page change monitor with a sound notification au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
URL Officiel https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Description Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Taille du Fichier 43.94 KB
Nombre d'Installations 425
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-05-09
Date de Publication 2020-05-05
Évaluation 5.00/5 Total 1 Évaluations
Développeur Damian Suchodolski
Type de Paiement free
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}