Page change monitor with a sound notification

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

Vad är Page change monitor with a sound notification?

Page change monitor with a sound notification är en Chrome-tillägg utvecklad av Damian Suchodolski, och dess huvudfunktion är "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Tilläggsskärmbilder

screenshot

Ladda ner Page change monitor with a sound notification-förlängningens CRX-fil

Ladda ner Page change monitor with a sound notification-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
Officiell webbadress https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Beskrivning Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Filstorlek 43.94 KB
Antal Installationer 425
Aktuell Version 1.0.0
Senast Uppdaterad 2020-05-09
Publiceringsdatum 2020-05-05
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Damian Suchodolski
Betalningssätt free
Stödda Språk 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": [
                ""
            ]
        }
    ]
}