Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Hvad er Text area word-wrap fixer?
Text area word-wrap fixer er en Chrome-udvidelse udviklet af Ateny, og dens hovedfunktion er "Fix the soft word-wrap not working in text area in any website.".
Udvidelsesskærmbilleder
Download Text area word-wrap fixer-udvidelses-CRX-fil
Download Text area word-wrap fixer-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
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.
Grundlæggende oplysninger om udvidelsen
Navn | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
Officiel URL | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Beskrivelse | Fix the soft word-wrap not working in text area in any website. |
Filstørrelse | 4.83 KB |
Antal Installationer | 5,004 |
Nuværende Version | 3.0 |
Senest Opdateret | 2023-12-05 |
Udgivelsesdato | 2020-04-20 |
Bedømmelse | 3.50/5 Samlet 8 Bedømmelser |
Udvikler | Ateny |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } ] } |