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