WhatsApp Notification Changer

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

Was ist WhatsApp Notification Changer?

WhatsApp Notification Changer ist eine Chrome-Erweiterung, die von rafael.galani entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".

Erweiterungsscreenshots

screenshot

WhatsApp Notification Changer-Erweiterungs-CRX-Datei herunterladen

Laden Sie WhatsApp Notification Changer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name WhatsApp Notification Changer WhatsApp Notification Changer
ID jnlilnljmhioncbmofmdlphmagmegkde
Offizielle URL https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde
Beschreibung A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Dateigröße 83.43 KB
Installationsanzahl 460
Aktuelle Version 1.0
Letztes Update 2020-07-30
Veröffentlichungsdatum 2020-07-30
Bewertung 4.00/5 Insgesamt 6 Bewertungen
Entwickler rafael.galani
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}