Line Wrapper

Enables line wrapping in

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

Wat is
 Line Wrapper?

 Line Wrapper is een Chrome-extensie ontwikkeld door https://pmarks.net, en de belangrijkste functie is "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie
 Line Wrapper

Download

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

 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.                    

Basisinformatie over de Extensie

Naam <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
Officiële URL https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Beschrijving Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Bestandsgrootte 4.98 KB
Aantal Installaties 68
Huidige Versie 1.0
Laatst Bijgewerkt 2013-02-11
Publicatiedatum 2013-02-10
Beoordeling 4.00/5 Totaal 4 Beoordelingen
Ontwikkelaar https://pmarks.net
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://code.google.com/p/chromium-pre-wrap/
URL van de Privacybeleid Pagina https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Ondersteunde Talen 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"
            ]
        }
    ]
}