Text into Multiple Columns

Reformats selected text to use columns of a more readable width.

Text into Multiple Columns란 무엇입니까?

Text into Multiple Columns은(는) dharris에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reformats selected text to use columns of a more readable width."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Text into Multiple Columns 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Reformats selected text to use columns of a more readable width.

Studies suggest that it's easier and faster to read text if the text is presented in narrow columns. The growth of full width browsing on wide screen monitors plays directly against this.

Add this extension to make it easy to reformat the text into something manageable.                    

확장 프로그램 기본 정보

이름 Text into Multiple Columns Text into Multiple Columns
ID nhlhdcjekkcenhfdhohihhoocnkgbfeb
공식 URL https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb
설명 Reformats selected text to use columns of a more readable width.
파일 크기 421 KB
설치 횟수 149
현재 버전 0.9.4
최근 업데이트 2015-05-26
출시 날짜 2015-05-26
평점 3.60/5 총 10 개의 평점
개발자 dharris
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text into Multiple Columns",
    "version": "0.9.4",
    "manifest_version": 2,
    "description": "Reformats selected text to use columns of a more readable width.",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "text-columns.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "cols.png",
        "default_title": "Display selected text in multiple columns."
    }
}