Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Co to jest Text into Multiple Columns?
Text into Multiple Columns to rozszerzenie Chrome opracowane przez dharris, a jego główną funkcją jest „Reformats selected text to use columns of a more readable width.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Text into Multiple Columns
Pobierz pliki rozszerzeń Text into Multiple Columns w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Oficjalny URL | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Opis | Reformats selected text to use columns of a more readable width. |
Rozmiar pliku | 421 KB |
Liczba instalacji | 192 |
Aktualna Wersja | 0.9.4 |
Ostatnia Aktualizacja | 2017-03-06 |
Data Publikacji | 2017-03-06 |
Ocena | 2.82/5 Łącznie 11 Oceny |
Deweloper | dharris |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/dougharris/text-columns |
Obsługiwane Języki | 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." } } |