Text into Multiple Columns

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

Apa itu Text into Multiple Columns?

Text into Multiple Columns adalah ekstensi Chrome yang dikembangkan oleh dharris, dan fitur utamanya adalah "Reformats selected text to use columns of a more readable width.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Text into Multiple Columns

Unduh file ekstensi Text into Multiple Columns dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Text into Multiple Columns Text into Multiple Columns
ID dhhbngmbgcjkdfmdnbjpocafoednnhfj
URL Resmi https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj
Deskripsi Reformats selected text to use columns of a more readable width.
Ukuran File 421 KB
Jumlah Instalasi 192
Versi Saat Ini 0.9.4
Terakhir Diperbarui 2017-03-06
Tanggal Publikasi 2017-03-06
Penilaian 2.82/5 Total 11 Penilaian
Pengembang dharris
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/dougharris/text-columns
Bahasa yang Didukung 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."
    }
}