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