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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Damian Suchodolski, και η κύρια λειτουργία του είναι "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Page change monitor with a sound notification

Λήψη αρχείων επέκτασης Page change monitor with a sound notification σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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": [
                ""
            ]
        }
    ]
}