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開發的Chrome擴展程式,該擴展的主要功能是“Monitors the site for the changes, it is useful for sound notification for MS Teams and others”。

擴展截圖

screenshot

下載Page change monitor with a sound notification擴展crx文件

下載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
官方網址 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": [
                ""
            ]
        }
    ]
}