Line Wrapper

Enables line wrapping in

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

Co to jest
 Line Wrapper?

 Line Wrapper to rozszerzenie Chrome opracowane przez https://pmarks.net, a jego główną funkcją jest „Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia
 Line Wrapper

Pobierz pliki rozszerzeń

 Line Wrapper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

 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.                    

Podstawowe informacje o rozszerzeniu

Nazwa <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
Oficjalny URL https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Opis Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Rozmiar pliku 4.98 KB
Liczba instalacji 68
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-02-11
Data Publikacji 2013-02-10
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper https://pmarks.net
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://code.google.com/p/chromium-pre-wrap/
Adres URL Strony Polityki Prywatności https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Obsługiwane Języki 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"
            ]
        }
    ]
}