Text into Multiple Columns
Reformats selected text to use columns of a more readable width.
Что такое Text into Multiple Columns?
Text into Multiple Columns - это расширение Chrome, разработанное dharris, и его основная функция - "Reformats selected text to use columns of a more readable width.".
Снимки экрана расширения
Скачать файл CRX расширения Text into Multiple Columns
Скачайте файлы расширений Text into Multiple Columns в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Text into Multiple Columns |
ID | nhlhdcjekkcenhfdhohihhoocnkgbfeb |
Официальный URL | https://chromewebstore.google.com/detail/text-into-multiple-column/nhlhdcjekkcenhfdhohihhoocnkgbfeb |
Описание | Reformats selected text to use columns of a more readable width. |
Размер файла | 421 KB |
Количество установок | 149 |
Текущая Версия | 0.9.4 |
Последнее Обновление | 2015-05-26 |
Дата публикации | 2015-05-26 |
Рейтинг | 3.60/5 Всего 10 оценок |
Разработчик | dharris |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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." } } |