Columnify
Turns page-width text into a more readable column.
Cos'è Columnify?
Columnify è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Turns page-width text into a more readable column.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Columnify
Scarica i file di estensione Columnify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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! Informazioni di Base sull'Estensione
| Nome | |
| ID | jjfioppoojknlbcfncooglhiajcjpcde |
| URL Ufficiale | https://chromewebstore.google.com/detail/columnify/jjfioppoojknlbcfncooglhiajcjpcde |
| Descrizione | Turns page-width text into a more readable column. |
| Dimensione del File | 318 KB |
| Conteggio Installazioni | 52 |
| Versione Corrente | 0.0.0.2 |
| Ultimo Aggiornamento | 2014-09-24 |
| Data di Pubblicazione | 2014-09-23 |
| Valutazione | 3.17/5 Totale 6 Valutazioni |
| Sviluppatore | Unknown |
| Tipo di Pagamento | free |
| Lingue Supportate | 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."
}
}
} | |