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
电子邮箱 [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"
            ]
        }
    ]
}