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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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