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 into lines of a more readable line length. The text is kept in the context of the page -- with images, logos, etc.

Click on a paragraph or select text and then click the icon to split the text.                    

확장 프로그램 기본 정보

이름 Text into Multiple Columns Text into Multiple Columns
ID dhhbngmbgcjkdfmdnbjpocafoednnhfj
공식 URL https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj
설명 Reformats selected text to use columns of a more readable width.
파일 크기 421 KB
설치 횟수 192
현재 버전 0.9.4
최근 업데이트 2017-03-06
출시 날짜 2017-03-06
평점 2.82/5 총 11 개의 평점
개발자 dharris
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dougharris/text-columns
지원되는 언어 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."
    }
}