Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
Qu'est-ce que Text area word-wrap fixer ?
Text area word-wrap fixer est une extension Chrome développée par Ateny, et sa fonction principale est "Fix the soft word-wrap not working in text area in any website.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Text area word-wrap fixer
Téléchargez les fichiers d'extension Text area word-wrap fixer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
URL Officiel | 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. |
Taille du Fichier | 4.83 KB |
Nombre d'Installations | 5,004 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2023-12-05 |
Date de Publication | 2020-04-20 |
Évaluation | 3.50/5 Total 8 Évaluations |
Développeur | Ateny |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } ] } |