Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Wat is Text into Multiple Columns?
Text into Multiple Columns is een Chrome-extensie ontwikkeld door dharris, en de belangrijkste functie is "Reformats selected text to use columns of a more readable width.".
Extensie Screenshots
Download het CRX-bestand van de extensie Text into Multiple Columns
Download Text into Multiple Columns-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Officiële URL | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Beschrijving | Reformats selected text to use columns of a more readable width. |
Bestandsgrootte | 421 KB |
Aantal Installaties | 192 |
Huidige Versie | 0.9.4 |
Laatst Bijgewerkt | 2017-03-06 |
Publicatiedatum | 2017-03-06 |
Beoordeling | 2.82/5 Totaal 11 Beoordelingen |
Ontwikkelaar | dharris |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/dougharris/text-columns |
Ondersteunde Talen | 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." } } |