WhatsUpper?

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

Wat is WhatsUpper??

WhatsUpper? is een Chrome-extensie ontwikkeld door Pierluigi Zagaria, en de belangrijkste functie is "Auto-capitalize the first letter in WhatsApp's chats.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie WhatsUpper?

Download WhatsUpper?-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam WhatsUpper? WhatsUpper?
ID olmljjmnbndapeodpcmifmoobcbhkobf
Officiële URL https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf
Beschrijving Auto-capitalize the first letter in WhatsApp's chats.
Bestandsgrootte 42.72 KB
Aantal Installaties 369
Huidige Versie 1.1.6
Laatst Bijgewerkt 2023-04-30
Publicatiedatum 2020-08-30
Beoordeling 2.86/5 Totaal 7 Beoordelingen
Ontwikkelaar Pierluigi Zagaria
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}