Auto Uppercase for Whatsapp Web
Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.
O que é Auto Uppercase for Whatsapp Web?
Auto Uppercase for Whatsapp Web é uma extensão do Chrome desenvolvida por opsJson, e sua principal característica é "Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Auto Uppercase for Whatsapp Web
Baixe arquivos de extensão Auto Uppercase for Whatsapp Web no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Eliminate pinky finger pain by automating the process of pressing shift to type capital letters at the beginning of sentences and after punctuation marks.
Informações Básicas da Extensão
Nome | Auto Uppercase for Whatsapp Web |
ID | lnhongehbnheecmglhgilembngeejbnb |
URL Oficial | https://chromewebstore.google.com/detail/auto-uppercase-for-whatsa/lnhongehbnheecmglhgilembngeejbnb |
Descrição | Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically. |
Tamanho do Arquivo | 24.66 KB |
Contagem de Instalações | 271 |
Versão Atual | 3.1 |
Última Atualização | 2023-05-29 |
Data de Publicação | 2022-12-31 |
Classificação | 3.00/5 Total de 4 Avaliações |
Desenvolvedor | opsJson |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |