Line Wrapper

Enables line wrapping in

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

Vad är
 Line Wrapper?

 Line Wrapper är en Chrome-tillägg utvecklad av https://pmarks.net, och dess huvudfunktion är "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Tilläggsskärmbilder

screenshot

Ladda ner
 Line Wrapper-förlängningens CRX-fil

Ladda ner

 Line Wrapper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

 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.                    

Grundläggande Information om Tillägg

Namn <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
Officiell webbadress https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Beskrivning Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Filstorlek 4.98 KB
Antal Installationer 68
Aktuell Version 1.0
Senast Uppdaterad 2013-02-11
Publiceringsdatum 2013-02-10
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare https://pmarks.net
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://code.google.com/p/chromium-pre-wrap/
URL till Sekretesspolicy Sidan https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Stödda Språk 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"
            ]
        }
    ]
}