Auto Uppercase for Whatsapp Web
Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.
Hvad er Auto Uppercase for Whatsapp Web?
Auto Uppercase for Whatsapp Web er en Chrome-udvidelse udviklet af opsJson, og dens hovedfunktion er "Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically.".
Udvidelsesskærmbilleder
Download Auto Uppercase for Whatsapp Web-udvidelses-CRX-fil
Download Auto Uppercase for Whatsapp Web-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Auto Uppercase for Whatsapp Web |
ID | lnhongehbnheecmglhgilembngeejbnb |
Officiel URL | https://chromewebstore.google.com/detail/auto-uppercase-for-whatsa/lnhongehbnheecmglhgilembngeejbnb |
Beskrivelse | Turn words at the beginning of a sentence, and after punctuations, into uppercase automatically. |
Filstørrelse | 24.66 KB |
Antal Installationer | 271 |
Nuværende Version | 3.1 |
Senest Opdateret | 2023-05-29 |
Udgivelsesdato | 2022-12-31 |
Bedømmelse | 3.00/5 Samlet 4 Bedømmelser |
Udvikler | opsJson |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |