Line Wrapper

Enables line wrapping in

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

Cos'è
 Line Wrapper?

 Line Wrapper è un'estensione di Chrome sviluppata da https://pmarks.net, e la sua funzione principale è "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione
 Line Wrapper

Scarica i file di estensione

 Line Wrapper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

 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.                    

Informazioni di Base sull'Estensione

Nome <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
URL Ufficiale https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Descrizione Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Dimensione del File 4.98 KB
Conteggio Installazioni 68
Versione Corrente 1.0
Ultimo Aggiornamento 2013-02-11
Data di Pubblicazione 2013-02-10
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore https://pmarks.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://code.google.com/p/chromium-pre-wrap/
URL della Pagina della Politica sulla Privacy https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Lingue Supportate 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"
            ]
        }
    ]
}