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
官方網址 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"
            ]
        }
    ]
}