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 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.
Основная информация о расширении
Название | Text into Multiple Columns |
ID | dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Официальный URL | https://chromewebstore.google.com/detail/text-into-multiple-column/dhhbngmbgcjkdfmdnbjpocafoednnhfj |
Описание | Reformats selected text to use columns of a more readable width. |
Размер файла | 421 KB |
Количество установок | 192 |
Текущая Версия | 0.9.4 |
Последнее Обновление | 2017-03-06 |
Дата публикации | 2017-03-06 |
Рейтинг | 2.82/5 Всего 11 оценок |
Разработчик | dharris |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/dougharris/text-columns |
Поддерживаемые языки | 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." } } |