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 into lines of a more readable line length. The text is kept in the context of the page -- with images, logos, etc. Click on a paragraph or select text and then click the icon to split the text.
Informazioni di Base sull'Estensione
Nome | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
URL Ufficiale | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Descrizione | Reformats selected text to use columns of a more readable width. |
Dimensione del File | 421 KB |
Conteggio Installazioni | 192 |
Versione Corrente | 0.9.4 |
Ultimo Aggiornamento | 2017-03-06 |
Data di Pubblicazione | 2017-03-06 |
Valutazione | 2.82/5 Totale 11 Valutazioni |
Sviluppatore | dharris |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/dougharris/text-columns |
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." } } |