Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Hvad er Text into Multiple Columns?
Text into Multiple Columns er en Chrome-udvidelse udviklet af dharris, og dens hovedfunktion er "Reformats selected text to use columns of a more readable width.".
Udvidelsesskærmbilleder
Download Text into Multiple Columns-udvidelses-CRX-fil
Download Text into Multiple Columns-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Officiel URL | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Beskrivelse | Reformats selected text to use columns of a more readable width. |
Filstørrelse | 421 KB |
Antal Installationer | 192 |
Nuværende Version | 0.9.4 |
Senest Opdateret | 2017-03-06 |
Udgivelsesdato | 2017-03-06 |
Bedømmelse | 2.82/5 Samlet 11 Bedømmelser |
Udvikler | dharris |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/dougharris/text-columns |
Understøttede Sprog | 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." } } |