Text into Multiple Columns

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

Text into Multiple Columns là gì?

Text into Multiple Columns là một tiện ích mở rộng Chrome được phát triển bởi dharris, và tính năng chính của nó là "Reformats selected text to use columns of a more readable width.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Text into Multiple Columns

Tải xuống các tệp mở rộng Text into Multiple Columns dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Text into Multiple Columns Text into Multiple Columns
ID dhhbngmbgcjkdfmdnbjpocafoednnhfj
URL Chính Thức https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj
Mô tả Reformats selected text to use columns of a more readable width.
Kích Thước Tệp 421 KB
Số Lần Cài Đặt 192
Phiên Bản Hiện Tại 0.9.4
Cập Nhật Lần Cuối 2017-03-06
Ngày Phát Hành 2017-03-06
Đánh Giá 2.82/5 Tổng số 11 Đánh Giá
Nhà Phát Triển dharris
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dougharris/text-columns
Ngôn Ngữ Được Hỗ Trợ 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."
    }
}