Text area word-wrap fixer
Fix the soft word-wrap not working in text area in any website.
¿Qué es Text area word-wrap fixer?
Text area word-wrap fixer es una extensión de Chrome desarrollada por Ateny, y su función principal es "Fix the soft word-wrap not working in text area in any website.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Text area word-wrap fixer
Descarga archivos de extensión Text area word-wrap fixer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Text area word-wrap fixer |
ID | cmiebacajlhfnfdofcflofoaaikdbpbc |
URL Oficial | https://chromewebstore.google.com/detail/text-area-word-wrap-fixer/cmiebacajlhfnfdofcflofoaaikdbpbc |
Descripción | Fix the soft word-wrap not working in text area in any website. |
Tamaño del Archivo | 4.83 KB |
Cantidad de Instalaciones | 5,004 |
Versión Actual | 3.0 |
Última Actualización | 2023-12-05 |
Fecha de Publicación | 2020-04-20 |
Calificación | 3.50/5 Total de 8 Calificaciones |
Desarrollador | Ateny |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } ] } |