Line Wrapper

Enables line wrapping in

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

 Line Wrapper là gì?

 Line Wrapper là một tiện ích mở rộng Chrome được phát triển bởi https://pmarks.net, và tính năng chính của nó là "Enables line wrapping in 
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng
 Line Wrapper

Tải xuống các tệp mở rộng

 Line Wrapper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

 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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên <pre> Line Wrapper
 Line Wrapper 
ID nhljfekjbhmbibnfeehbgfeccakopaod
URL Chính Thức https://chromewebstore.google.com/detail/%3Cpre%3E-line-wrapper/nhljfekjbhmbibnfeehbgfeccakopaod
Mô tả Enables line wrapping in
 tags. Uncheck "Enabled" whenever you want to revert to the default behavior.
Kích Thước Tệp 4.98 KB
Số Lần Cài Đặt 68
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-02-11
Ngày Phát Hành 2013-02-10
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://pmarks.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://code.google.com/p/chromium-pre-wrap/
URL Trang Chính Sách Bảo Mật https://raw.githubusercontent.com/pmarks-net/ipvfoo/master/misc/privacy_policy.txt
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}