WhatsApp Notification Changer

A simple extension that allows the user to change the notification sound of web.whatsapp.com.

WhatsApp Notification Changer là gì?

WhatsApp Notification Changer là một tiện ích mở rộng Chrome được phát triển bởi rafael.galani, và tính năng chính của nó là "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng WhatsApp Notification Changer

Tải xuống các tệp mở rộng WhatsApp Notification Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        A simple extension that allows the user to change the notification sound of web.whatsapp.com.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WhatsApp Notification Changer WhatsApp Notification Changer
ID jnlilnljmhioncbmofmdlphmagmegkde
URL Chính Thức https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde
Mô tả A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Kích Thước Tệp 83.43 KB
Số Lần Cài Đặt 460
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-07-30
Ngày Phát Hành 2020-07-30
Đánh Giá 4.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển rafael.galani
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsApp Notification Changer",
    "version": "1.0",
    "description": "A simple extension that allows the user to change the notification sound of web.whatsapp.com.",
    "permissions": [
        "unlimitedStorage",
        "declarativeContent",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/web.whatsapp.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "modifier.js"
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "manifest_version": 2
}