Line Wrapper

Enables line wrapping in

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

Что такое
 Line Wrapper?

 Line Wrapper - это расширение Chrome, разработанное https://pmarks.net, и его основная функция - "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения
 Line Wrapper

Скачайте файлы расширений

 Line Wrapper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

 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.                    

Основная информация о расширении

Название <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
Официальный URL https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Описание Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Размер файла 4.98 KB
Количество установок 68
Текущая Версия 1.0
Последнее Обновление 2013-02-11
Дата публикации 2013-02-10
Рейтинг 4.00/5 Всего 4 оценок
Разработчик https://pmarks.net
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://code.google.com/p/chromium-pre-wrap/
URL страницы политики конфиденциальности https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Поддерживаемые языки 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"
            ]
        }
    ]
}