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"
            ]
        }
    ]
}