Columnify

Turns page-width text into a more readable column.

Was ist Columnify?

Columnify ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Turns page-width text into a more readable column.".

Erweiterungsscreenshots

screenshot

Columnify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Columnify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        With just one keystroke, instantly transform a page with text that stretches across the entire screen into a manageable column for easier reading. 

Ctrl+Shift+K to columnify.
Ctrl+Shift+L to decolumnify.

There are other apps that include this feature, but because they also include a lot of other stuff, they have a clunky interface and you end up doing a lot more work and seeing more needless popups than you need for a feature like this. 

This is instant: boom, the page is a column. No forms to fill out, no passwords.

Please give any comments or suggestions!                    

Grundlegende Informationen zur Erweiterung

Name Columnify Columnify
ID jjfioppoojknlbcfncooglhiajcjpcde
Offizielle URL https://chromewebstore.google.com/detail/columnify/jjfioppoojknlbcfncooglhiajcjpcde
Beschreibung Turns page-width text into a more readable column.
Dateigröße 318 KB
Installationsanzahl 52
Aktuelle Version 0.0.0.2
Letztes Update 2014-09-24
Veröffentlichungsdatum 2014-09-23
Bewertung 3.17/5 Insgesamt 6 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Columnify",
    "description": "Turns page-width text into a more readable column.",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background2.js"
        ],
        "persistent": false
    },
    "commands": {
        "columnify": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Makes column."
        },
        "decolumnify": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Undoes column."
        }
    }
}