Line Wrapper

Enables line wrapping in

 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.

¿Qué es
 Line Wrapper?

 Line Wrapper es una extensión de Chrome desarrollada por https://pmarks.net, y su función principal es "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión
 Line Wrapper

Descarga archivos de extensión

 Line Wrapper 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

 I wrote this extension after getting annoyed by a mailing list that displayed entire paragraphs on a single unreadable line. It injects a bit of CSS to enable line wrapping in 
 tags:

pre { white-space: pre-wrap; }

This takes effect immediately on all active pages.

I've published the (very short) source code under the Apache 2.0 license.                    

Información Básica de la Extensión

Nombre <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
URL Oficial https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Descripción Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Tamaño del Archivo 4.98 KB
Cantidad de Instalaciones 68
Versión Actual 1.0
Última Actualización 2013-02-11
Fecha de Publicación 2013-02-10
Calificación 4.00/5 Total de 4 Calificaciones
Desarrollador https://pmarks.net
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://code.google.com/p/chromium-pre-wrap/
URL de la Página de Política de Privacidad https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Idiomas Soportados en-US
manifest.json
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "
 Line Wrapper", "manifest_version": 2, "version": "1.0", "description": "Enables line wrapping in 
 tags.  Uncheck \"Enabled\" whenever you want to revert to the default behavior.",
    "homepage_url": "http:\/\/chromium-pre-wrap.googlecode.com\/",
    "icons": {
        "128": "boring-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        }
    ]
}