WhatsApp Notification Changer

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

Co je WhatsApp Notification Changer?

WhatsApp Notification Changer je rozšíření Chrome vyvinuté rafael.galani, a jeho hlavní funkcí je „A simple extension that allows the user to change the notification sound of web.whatsapp.com.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření WhatsApp Notification Changer

Stáhněte si soubory rozšíření WhatsApp Notification Changer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název WhatsApp Notification Changer WhatsApp Notification Changer
ID jnlilnljmhioncbmofmdlphmagmegkde
Oficiální URL https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde
Popis A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Velikost souboru 83.43 KB
Počet instalací 460
Aktuální Verze 1.0
Poslední Aktualizace 2020-07-30
Datum Vydání 2020-07-30
Hodnocení 4.00/5 Celkem 6 Hodnocení
Vývojář rafael.galani
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
}