Auto Uppercase for Whatsapp Web

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

Vad är Auto Uppercase for Whatsapp Web?

Auto Uppercase for Whatsapp Web är en Chrome-tillägg utvecklad av opsJson, och dess huvudfunktion är "Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.".

Tilläggsskärmbilder

screenshot

Ladda ner Auto Uppercase for Whatsapp Web-förlängningens CRX-fil

Ladda ner Auto Uppercase for Whatsapp Web-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Auto Uppercase for Whatsapp Web Auto Uppercase for Whatsapp Web
ID lnhongehbnheecmglhgilembngeejbnb
Officiell webbadress https://chromewebstore.google.com/detail/auto-uppercase-for-whatsa/lnhongehbnheecmglhgilembngeejbnb
Beskrivning Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.
Filstorlek 24.66 KB
Antal Installationer 271
Aktuell Version 3.1
Senast Uppdaterad 2023-05-29
Publiceringsdatum 2022-12-31
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare opsJson
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}