WhatsUpper?

Auto-capitalize the first letter in WhatsApp's chats.

¿Qué es WhatsUpper??

WhatsUpper? es una extensión de Chrome desarrollada por Pierluigi Zagaria, y su función principal es "Auto-capitalize the first letter in WhatsApp's chats.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión WhatsUpper?

Descarga archivos de extensión WhatsUpper? 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

                        Once installed you can toggle the feature in the extension menu.                    

Información Básica de la Extensión

Nombre WhatsUpper? WhatsUpper?
ID olmljjmnbndapeodpcmifmoobcbhkobf
URL Oficial https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf
Descripción Auto-capitalize the first letter in WhatsApp's chats.
Tamaño del Archivo 42.72 KB
Cantidad de Instalaciones 369
Versión Actual 1.1.6
Última Actualización 2023-04-30
Fecha de Publicación 2020-08-30
Calificación 2.86/5 Total de 7 Calificaciones
Desarrollador Pierluigi Zagaria
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WhatsUpper?",
    "version": "1.1.6",
    "description": "Auto-capitalize the first letter in WhatsApp's chats.",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/content.js"
            ]
        }
    ]
}