Auto Uppercase for Whatsapp Web

Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.

Was ist Auto Uppercase for Whatsapp Web?

Auto Uppercase for Whatsapp Web ist eine Chrome-Erweiterung, die von opsJson entwickelt wurde, und ihr Hauptmerkmal ist "Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.".

Erweiterungsscreenshots

screenshot

Auto Uppercase for Whatsapp Web-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Uppercase for Whatsapp Web-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Eliminate pinky finger pain by automating the process of pressing shift to type capital letters at the beginning of sentences and after punctuation marks.                    

Grundlegende Informationen zur Erweiterung

Name Auto Uppercase for Whatsapp Web Auto Uppercase for Whatsapp Web
ID lnhongehbnheecmglhgilembngeejbnb
Offizielle URL https://chromewebstore.google.com/detail/auto-uppercase-for-whatsa/lnhongehbnheecmglhgilembngeejbnb
Beschreibung Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.
Dateigröße 24.66 KB
Installationsanzahl 271
Aktuelle Version 3.1
Letztes Update 2023-05-29
Veröffentlichungsdatum 2022-12-31
Bewertung 3.00/5 Insgesamt 4 Bewertungen
Entwickler opsJson
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "3.1",
    "name": "Auto Uppercase for Whatsapp Web",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/*"
            ],
            "resources": [
                "script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": ".\/icons\/128.png",
        "64": ".\/icons\/64.png",
        "38": ".\/icons\/38.png",
        "16": ".\/icons\/16.png"
    },
    "permissions": [
        "storage"
    ]
}