Auto Uppercase for Whatsapp Web
Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.
Cos'è Auto Uppercase for Whatsapp Web?
Auto Uppercase for Whatsapp Web è un'estensione di Chrome sviluppata da opsJson, e la sua funzione principale è "Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Auto Uppercase for Whatsapp Web
Scarica i file di estensione Auto Uppercase for Whatsapp Web in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Eliminate pinky finger pain by automating the process of pressing shift to type capital letters at the beginning of sentences and after punctuation marks.
Informazioni di Base sull'Estensione
Nome | Auto Uppercase for Whatsapp Web |
ID | lnhongehbnheecmglhgilembngeejbnb |
URL Ufficiale | https://chromewebstore.google.com/detail/auto-uppercase-for-whatsa/lnhongehbnheecmglhgilembngeejbnb |
Descrizione | Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically. |
Dimensione del File | 24.66 KB |
Conteggio Installazioni | 271 |
Versione Corrente | 3.1 |
Ultimo Aggiornamento | 2023-05-29 |
Data di Pubblicazione | 2022-12-31 |
Valutazione | 3.00/5 Totale 4 Valutazioni |
Sviluppatore | opsJson |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |