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 to use columns of a more readable width. Studies suggest that it's easier and faster to read text if the text is presented in narrow columns. The growth of full width browsing on wide screen monitors plays directly against this. Add this extension to make it easy to reformat the text into something manageable.
Podstawowe informacje o rozszerzeniu
Nazwa | Text into Multiple Columns |
ID | nhlhdcjekkcenhfdhohihhoocnkgbfeb |
Oficjalny URL | https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb |
Opis | Reformats selected text to use columns of a more readable width. |
Rozmiar pliku | 421 KB |
Liczba instalacji | 149 |
Aktualna Wersja | 0.9.4 |
Ostatnia Aktualizacja | 2015-05-26 |
Data Publikacji | 2015-05-26 |
Ocena | 3.60/5 Łącznie 10 Oceny |
Deweloper | dharris |
[email protected] | |
Typ Płatności | free |
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." } } |