Text into Multiple Columns

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

Τι είναι το Text into Multiple Columns;

Το Text into Multiple Columns είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dharris, και η κύρια λειτουργία του είναι "Reformats selected text to use columns of a more readable width.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Text into Multiple Columns

Λήψη αρχείων επέκτασης Text into Multiple Columns σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Text into Multiple Columns Text into Multiple Columns
ID nhlhdcjekkcenhfdhohihhoocnkgbfeb
Επίσημο URL https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb
Περιγραφή Reformats selected text to use columns of a more readable width.
Μέγεθος Αρχείου 421 KB
Αριθμός Εγκαταστάσεων 149
Τρέχουσα Έκδοση 0.9.4
Τελευταία Ενημέρωση 2015-05-26
Ημερομηνία Δημοσίευσης 2015-05-26
Αξιολόγηση 3.60/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής dharris
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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."
    }
}