Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Cos'è Text area word-wrap fixer?
Text area word-wrap fixer è un'estensione di Chrome sviluppata da Ateny, e la sua funzione principale è "Fix the soft word-wrap not working in text area in any website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Text area word-wrap fixer
Scarica i file di estensione Text area word-wrap fixer 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
Several websites do not support word-wrap for (HTML) text area elements. There are workarounds which require injecting style sheets (CSS) for each website. This extension bypasses the problem and directly applies the fix to the text areas in websites.
Informazioni di Base sull'Estensione
Nome | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
URL Ufficiale | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Descrizione | Fix the soft word-wrap not working in text area in any website. |
Dimensione del File | 4.83 KB |
Conteggio Installazioni | 5,004 |
Versione Corrente | 3.0 |
Ultimo Aggiornamento | 2023-12-05 |
Data di Pubblicazione | 2020-04-20 |
Valutazione | 3.50/5 Totale 8 Valutazioni |
Sviluppatore | Ateny |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "3.0", "manifest_version": 3, "name": "Text area word-wrap fixer", "description": "Fix the soft word-wrap not working in text area in any website.", "author": "Simone Frassanito", "icons": { "128": "favicon.png" }, "host_permissions": [ "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "fix.css" ], "run_at": "document_start", "all_frames": true } ] } |