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
官方網址 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."
    }
}