Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
What is Text area word-wrap fixer?
Text area word-wrap fixer is a Chrome extension developed by Ateny, and its main feature is "Fix the soft word-wrap not working in text area in any website.".
Extension Screenshots
Download Text area word-wrap fixer Extension CRX File
Download Text area word-wrap fixer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
Official URL | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Description | Fix the soft word-wrap not working in text area in any website. |
File Size | 4.83 KB |
Installation Count | 5,004 |
Current Version | 3.0 |
Last Updated | 2023-12-05 |
Publish Date | 2020-04-20 |
Rating | 3.50/5 Total 8 Ratings |
Developer | Ateny |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } ] } |