Page change monitor with a sound notification

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

Page change monitor with a sound notification क्या है?

Page change monitor with a sound notification Damian Suchodolski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Monitors the site for the changes, it is useful for sound notification for MS Teams and others"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Page change monitor with a sound notification एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
आधिकारिक URL https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
विवरण Monitors the site for the changes, it is useful for sound notification for MS Teams and others
फ़ाइल का आकार 43.94 KB
स्थापना संख्या 425
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-05-09
प्रकाशन तिथि 2020-05-05
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Damian Suchodolski
भुगतान के प्रकार free
समर्थित भाषाएँ 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": [
                ""
            ]
        }
    ]
}