Columnify

Turns page-width text into a more readable column.

Hvad er Columnify?

Columnify er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Turns page-width text into a more readable column.".

Udvidelsesskærmbilleder

screenshot

Download Columnify-udvidelses-CRX-fil

Download Columnify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Columnify Columnify
ID jjfioppoojknlbcfncooglhiajcjpcde
Officiel URL https://chromewebstore.google.com/detail/columnify/jjfioppoojknlbcfncooglhiajcjpcde
Beskrivelse Turns page-width text into a more readable column.
Filstørrelse 318 KB
Antal Installationer 52
Nuværende Version 0.0.0.2
Senest Opdateret 2014-09-24
Udgivelsesdato 2014-09-23
Bedømmelse 3.17/5 Samlet 6 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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."
        }
    }
}