WhatsUpper?

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

What is WhatsUpper??

WhatsUpper? is a Chrome extension developed by Pierluigi Zagaria, and its main feature is "Auto-capitalize the first letter in WhatsApp's chats.".

Extension Screenshots

screenshot

Download WhatsUpper? Extension CRX File

Download WhatsUpper? extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name WhatsUpper? WhatsUpper?
ID olmljjmnbndapeodpcmifmoobcbhkobf
Official URL https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf
Description Auto-capitalize the first letter in WhatsApp's chats.
File Size 42.72 KB
Installation Count 369
Current Version 1.1.6
Last Updated 2023-04-30
Publish Date 2020-08-30
Rating 2.86/5 Total 7 Ratings
Developer Pierluigi Zagaria
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}