WhatsApp Notification Changer

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

什麼是WhatsApp Notification Changer?

WhatsApp Notification Changer是由rafael.galani開發的Chrome擴展程式,該擴展的主要功能是“A simple extension that allows the user to change the notification sound of web.whatsapp.com.”。

擴展截圖

screenshot

下載WhatsApp Notification Changer擴展crx文件

下載WhatsApp Notification Changer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 WhatsApp Notification Changer WhatsApp Notification Changer
ID jnlilnljmhioncbmofmdlphmagmegkde
官方網址 https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde
簡介 A simple extension that allows the user to change the notification sound of web.whatsapp.com.
檔案大小 83.43 KB
安裝次數 460
目前版本 1.0
更新時間 2020-07-30
上架時間 2020-07-30
評分 4.00/5 共 6 次評分
開發者 rafael.galani
電子郵箱 [email protected]
付費類型 free
支援的語言 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
}