WhatsUpper?
Auto-capitalize the first letter in WhatsApp's chats.
Cos'è WhatsUpper??
WhatsUpper? è un'estensione di Chrome sviluppata da Pierluigi Zagaria, e la sua funzione principale è "Auto-capitalize the first letter in WhatsApp's chats.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WhatsUpper?
Scarica i file di estensione WhatsUpper? 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
Once installed you can toggle the feature in the extension menu.
Informazioni di Base sull'Estensione
Nome | WhatsUpper? |
ID | olmljjmnbndapeodpcmifmoobcbhkobf |
URL Ufficiale | https://chromewebstore.google.com/detail/whatsupper/olmljjmnbndapeodpcmifmoobcbhkobf |
Descrizione | Auto-capitalize the first letter in WhatsApp's chats. |
Dimensione del File | 42.72 KB |
Conteggio Installazioni | 369 |
Versione Corrente | 1.1.6 |
Ultimo Aggiornamento | 2023-04-30 |
Data di Pubblicazione | 2020-08-30 |
Valutazione | 2.86/5 Totale 7 Valutazioni |
Sviluppatore | Pierluigi Zagaria |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsUpper?", "version": "1.1.6", "description": "Auto-capitalize the first letter in WhatsApp's chats.", "manifest_version": 3, "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "activeTab", "storage", "declarativeContent" ], "action": { "default_icon": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "js\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "run_at": "document_idle", "js": [ "js\/content.js" ] } ] } |