Page change monitor with a sound notification

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

What is Page change monitor with a sound notification?

Page change monitor with a sound notification is a Chrome extension developed by Damian Suchodolski, and its main feature is "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Extension Screenshots

screenshot

Download Page change monitor with a sound notification Extension CRX File

Download Page change monitor with a sound notification extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
Official URL 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
File Size 43.94 KB
Installation Count 425
Current Version 1.0.0
Last Updated 2020-05-09
Publish Date 2020-05-05
Rating 5.00/5 Total 1 Ratings
Developer Damian Suchodolski
Payment Type free
Supported Languages 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": [
                ""
            ]
        }
    ]
}