Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Wat is Text area word-wrap fixer?
Text area word-wrap fixer is een Chrome-extensie ontwikkeld door Ateny, en de belangrijkste functie is "Fix the soft word-wrap not working in text area in any website.".
Extensie Screenshots
Download het CRX-bestand van de extensie Text area word-wrap fixer
Download Text area word-wrap fixer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
Officiële URL | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Beschrijving | Fix the soft word-wrap not working in text area in any website. |
Bestandsgrootte | 4.83 KB |
Aantal Installaties | 5,004 |
Huidige Versie | 3.0 |
Laatst Bijgewerkt | 2023-12-05 |
Publicatiedatum | 2020-04-20 |
Beoordeling | 3.50/5 Totaal 8 Beoordelingen |
Ontwikkelaar | Ateny |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } ] } |