Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Vad är Text area word-wrap fixer?
Text area word-wrap fixer är en Chrome-tillägg utvecklad av Ateny, och dess huvudfunktion är "Fix the soft word-wrap not working in text area in any website.".
Tilläggsskärmbilder
Ladda ner Text area word-wrap fixer-förlängningens CRX-fil
Ladda ner Text area word-wrap fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
Officiell webbadress | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Beskrivning | Fix the soft word-wrap not working in text area in any website. |
Filstorlek | 4.83 KB |
Antal Installationer | 5,004 |
Aktuell Version | 3.0 |
Senast Uppdaterad | 2023-12-05 |
Publiceringsdatum | 2020-04-20 |
Betyg | 3.50/5 Totalt 8 Betyg |
Utvecklare | Ateny |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } ] } |