WhatsUpper?

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

Qu'est-ce que WhatsUpper? ?

WhatsUpper? est une extension Chrome développée par Pierluigi Zagaria, et sa fonction principale est "Auto-capitalize the first letter in WhatsApp's chats.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension WhatsUpper?

Téléchargez les fichiers d'extension WhatsUpper? au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom WhatsUpper? WhatsUpper?
ID olmljjmnbndapeodpcmifmoobcbhkobf
URL Officiel https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf
Description Auto-capitalize the first letter in WhatsApp's chats.
Taille du Fichier 42.72 KB
Nombre d'Installations 369
Version Actuelle 1.1.6
Dernière Mise à Jour 2023-04-30
Date de Publication 2020-08-30
Évaluation 2.86/5 Total 7 Évaluations
Développeur Pierluigi Zagaria
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}