Page change monitor with a sound notification

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

Apa itu Page change monitor with a sound notification?

Page change monitor with a sound notification adalah ekstensi Chrome yang dikembangkan oleh Damian Suchodolski, dan fitur utamanya adalah "Monitors the site for the changes, it is useful for sound notification for MS Teams and others".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Page change monitor with a sound notification

Unduh file ekstensi Page change monitor with a sound notification dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Page change monitor with a sound notification Page change monitor with a sound notification
ID fghkadhbongjfdmonalifpgifdkkpfpn
URL Resmi https://chromewebstore.google.com/detail/page-change-monitor-with/fghkadhbongjfdmonalifpgifdkkpfpn
Deskripsi Monitors the site for the changes, it is useful for sound notification for MS Teams and others
Ukuran File 43.94 KB
Jumlah Instalasi 425
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2020-05-09
Tanggal Publikasi 2020-05-05
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Damian Suchodolski
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}