WhatsApp Notification Changer

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

O que é WhatsApp Notification Changer?

WhatsApp Notification Changer é uma extensão do Chrome desenvolvida por rafael.galani, e sua principal característica é "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão WhatsApp Notification Changer

Baixe arquivos de extensão WhatsApp Notification Changer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome WhatsApp Notification Changer WhatsApp Notification Changer
ID jnlilnljmhioncbmofmdlphmagmegkde
URL Oficial https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde
Descrição A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Tamanho do Arquivo 83.43 KB
Contagem de Instalações 460
Versão Atual 1.0
Última Atualização 2020-07-30
Data de Publicação 2020-07-30
Classificação 4.00/5 Total de 6 Avaliações
Desenvolvedor rafael.galani
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}