WhatsApp Notification Changer

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

¿Qué es WhatsApp Notification Changer?

WhatsApp Notification Changer es una extensión de Chrome desarrollada por rafael.galani, y su función principal es "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión WhatsApp Notification Changer

Descarga archivos de extensión WhatsApp Notification Changer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre WhatsApp Notification Changer WhatsApp Notification Changer
ID jnlilnljmhioncbmofmdlphmagmegkde
URL Oficial https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde
Descripción A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Tamaño del Archivo 83.43 KB
Cantidad de Instalaciones 460
Versión Actual 1.0
Última Actualización 2020-07-30
Fecha de Publicación 2020-07-30
Calificación 4.00/5 Total de 6 Calificaciones
Desarrollador rafael.galani
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
}