Line Wrapper

Enables line wrapping in

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

 Line Wrapperとは何ですか?

 Line Wrapperはhttps://pmarks.netによって開発されたChromeの拡張機能で、その主な機能は「Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.」です。

拡張機能のスクリーンショット

screenshot

 Line Wrapper拡張機能のCRXファイルをダウンロード

 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
Eメール [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"
            ]
        }
    ]
}