Mute Notifications

Disable all desktop notifications with one click.

Mute Notificationsคืออะไร?

Mute Notifications เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ondřej Cífka และคุณลักษณะหลักของมันคือ "Disable all desktop notifications with one click."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mute Notifications

ดาวน์โหลดไฟล์ส่วนขยาย Mute Notifications ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a button to Chrome that turns off desktop notifications for all web pages. When the button is clicked again, the original notification settings are restored.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Mute Notifications Mute Notifications
ID bmjdeaihnngnnnaldgakphcaanioohgn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn
คำอธิบาย Disable all desktop notifications with one click.
ขนาดไฟล์ 17.44 KB
จำนวนการติดตั้ง 5,077
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2019-12-20
วันที่เผยแพร่ 2019-12-20
คะแนน 4.47/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา Ondřej Cífka
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cifkao/chrome-mute-notifications
URL หน้าช่วยเหลือ https://github.com/cifkao/chrome-mute-notifications
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Notifications",
    "description": "Disable all desktop notifications with one click.",
    "version": "0.3",
    "icons": {
        "128": "logo-128.png",
        "48": "logo-48.png"
    },
    "permissions": [
        "contentSettings",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon-on-19.png",
            "38": "icon-on-38.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}