Whatsapp Web Notification Customizer

Customize Whatsapp Web Notification Sound

Was ist Whatsapp Web Notification Customizer?

Whatsapp Web Notification Customizer ist eine Chrome-Erweiterung, die von Amer Sawan entwickelt wurde, und ihr Hauptmerkmal ist "Customize Whatsapp Web Notification Sound".

Erweiterungsscreenshots

screenshot

Whatsapp Web Notification Customizer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Whatsapp Web Notification Customizer-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

                        Are you annoyed from the noisy Whatsapp™ web notification sound?!
Are you frustrated that Whatsapp don't allow you to change that sound?!

Using this extension you can easily customize the notification sound as you wish                    

Grundlegende Informationen zur Erweiterung

Name Whatsapp Web Notification Customizer Whatsapp Web Notification Customizer
ID faglnjojbiggpodloaopkodgeholkcmj
Offizielle URL https://chrome.google.com/webstore/detail/whatsapp-web-notification/faglnjojbiggpodloaopkodgeholkcmj
Beschreibung Customize Whatsapp Web Notification Sound
Dateigröße 81.33 KB
Installationsanzahl 20
Aktuelle Version 0.0.0.1
Letztes Update 2020-08-30
Veröffentlichungsdatum 2020-08-30
Entwickler Amer Sawan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://dev.amersaw.info
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Whatsapp Web Notification Customizer",
    "version": "0.0.0.1",
    "homepage_url": "https:\/\/github.com\/amersaw\/WhatsApp-Web-Notification-Customizer",
    "description": "Customize Whatsapp Web Notification Sound",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "https:\/\/web.whatsapp.com\/*"
    ],
    "options_page": "options.html",
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/WappCustomNotification-128.png"
        }
    },
    "icons": {
        "128": "images\/WappCustomNotification-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "whatsapp.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}