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ファイルをダウンロード

Text into Multiple Columns拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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."
    }
}