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