Text into Multiple Columns

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

Qu'est-ce que Text into Multiple Columns ?

Text into Multiple Columns est une extension Chrome développée par dharris, et sa fonction principale est "Reformats selected text to use columns of a more readable width.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Text into Multiple Columns

Téléchargez les fichiers d'extension Text into Multiple Columns au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Text into Multiple Columns Text into Multiple Columns
ID nhlhdcjekkcenhfdhohihhoocnkgbfeb
URL Officiel https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb
Description Reformats selected text to use columns of a more readable width.
Taille du Fichier 421 KB
Nombre d'Installations 149
Version Actuelle 0.9.4
Dernière Mise à Jour 2015-05-26
Date de Publication 2015-05-26
Évaluation 3.60/5 Total 10 Évaluations
Développeur dharris
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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."
    }
}