Breakup
Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Что такое Breakup?
Breakup - это расширение Chrome, разработанное Playwrite, и его основная функция - "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".
Снимки экрана расширения
Скачать файл CRX расширения Breakup
Скачайте файлы расширений Breakup в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Breakup is a simple Chrome extension that attempts to reformat text elements on webpages so they are more readable. Formatting options include: - Changing the font to a web-safe version; - Changing the size of the font; - Using a "dark theme" to provide more contrast between background and text. It is designed to work with Reddit, however, it may work on other websites, depending on how their elements are styled. To use the extension, right click on an element and select "Break up text" from the context menu.
Основная информация о расширении
Название | Breakup |
ID | janccjlmbelkhnffmbfimnklelkdfcoh |
Официальный URL | https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh |
Описание | Breaks up walls of text into readable paragraphs, applies a different font and colouring. |
Размер файла | 111 KB |
Количество установок | 199 |
Текущая Версия | 1.11 |
Последнее Обновление | 2014-09-22 |
Дата публикации | 2014-09-22 |
Рейтинг | 4.50/5 Всего 8 оценок |
Разработчик | Playwrite |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://www.theplaywrite.com |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Breakup", "description": "Breaks up walls of text into readable paragraphs, applies a different font and colouring.", "version": "1.11", "options_page": "options.html", "homepage_url": "http:\/\/theplaywrite.com", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dom.js" ] } ], "permissions": [ "tabs", "contextMenus", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |