Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Was ist Text into Multiple Columns?
Text into Multiple Columns ist eine Chrome-Erweiterung, die von dharris entwickelt wurde, und ihr Hauptmerkmal ist "Reformats selected text to use columns of a more readable width.".
Erweiterungsscreenshots
Text into Multiple Columns-Erweiterungs-CRX-Datei herunterladen
Laden Sie Text into Multiple Columns-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Offizielle URL | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Beschreibung | Reformats selected text to use columns of a more readable width. |
Dateigröße | 421 KB |
Installationsanzahl | 192 |
Aktuelle Version | 0.9.4 |
Letztes Update | 2017-03-06 |
Veröffentlichungsdatum | 2017-03-06 |
Bewertung | 2.82/5 Insgesamt 11 Bewertungen |
Entwickler | dharris |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/dougharris/text-columns |
Unterstützte Sprachen | 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." } } |