Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Was ist Text area word-wrap fixer?
Text area word-wrap fixer ist eine Chrome-Erweiterung, die von Ateny entwickelt wurde, und ihr Hauptmerkmal ist "Fix the soft word-wrap not working in text area in any website.".
Erweiterungsscreenshots
Text area word-wrap fixer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Text area word-wrap fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
Offizielle URL | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Beschreibung | Fix the soft word-wrap not working in text area in any website. |
Dateigröße | 4.83 KB |
Installationsanzahl | 5,004 |
Aktuelle Version | 3.0 |
Letztes Update | 2023-12-05 |
Veröffentlichungsdatum | 2020-04-20 |
Bewertung | 3.50/5 Insgesamt 8 Bewertungen |
Entwickler | Ateny |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } ] } |