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