Line Wrapper

Enables line wrapping in

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

What is
 Line Wrapper?

 Line Wrapper is a Chrome extension developed by https://pmarks.net, and its main feature is "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Extension Screenshots

screenshot

Download
 Line Wrapper Extension CRX File

Download

 Line Wrapper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

 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.                    

Extension Basic Information

Name <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
Official URL https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Description Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
File Size 4.98 KB
Installation Count 68
Current Version 1.0
Last Updated 2013-02-11
Publish Date 2013-02-10
Rating 4.00/5 Total 4 Ratings
Developer https://pmarks.net
Email [email protected]
Payment Type free
Extension Website https://code.google.com/p/chromium-pre-wrap/
Privacy Policy Page URL https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Supported Languages 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"
            ]
        }
    ]
}