Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Cos'è Text into Multiple Columns?
Text into Multiple Columns è un'estensione di Chrome sviluppata da dharris, e la sua funzione principale è "Reformats selected text to use columns of a more readable width.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Text into Multiple Columns
Scarica i file di estensione Text into Multiple Columns 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
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.
Informazioni di Base sull'Estensione
Nome | Text into Multiple Columns |
ID | nhlhdcjekkcenhfdhohihhoocnkgbfeb |
URL Ufficiale | https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb |
Descrizione | Reformats selected text to use columns of a more readable width. |
Dimensione del File | 421 KB |
Conteggio Installazioni | 149 |
Versione Corrente | 0.9.4 |
Ultimo Aggiornamento | 2015-05-26 |
Data di Pubblicazione | 2015-05-26 |
Valutazione | 3.60/5 Totale 10 Valutazioni |
Sviluppatore | dharris |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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." } } |