Text into Multiple Columns

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

Vad är Text into Multiple Columns?

Text into Multiple Columns är en Chrome-tillägg utvecklad av dharris, och dess huvudfunktion är "Reformats selected text to use columns of a more readable width.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Text into Multiple Columns-förlängningens CRX-fil

Ladda ner Text into Multiple Columns-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Text into Multiple Columns Text into Multiple Columns
ID nhlhdcjekkcenhfdhohihhoocnkgbfeb
Officiell webbadress https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb
Beskrivning Reformats selected text to use columns of a more readable width.
Filstorlek 421 KB
Antal Installationer 149
Aktuell Version 0.9.4
Senast Uppdaterad 2015-05-26
Publiceringsdatum 2015-05-26
Betyg 3.60/5 Totalt 10 Betyg
Utvecklare dharris
E-post [email protected]
Betalningssätt free
Stödda Språk 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."
    }
}