Breakup
Breaks up walls of text into readable paragraphs, applies a different font and colouring.
O que é Breakup?
Breakup é uma extensão do Chrome desenvolvida por Playwrite, e sua principal característica é "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Breakup
Baixe arquivos de extensão Breakup no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Breakup |
ID | janccjlmbelkhnffmbfimnklelkdfcoh |
URL Oficial | https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh |
Descrição | Breaks up walls of text into readable paragraphs, applies a different font and colouring. |
Tamanho do Arquivo | 111 KB |
Contagem de Instalações | 199 |
Versão Atual | 1.11 |
Última Atualização | 2014-09-22 |
Data de Publicação | 2014-09-22 |
Classificação | 4.50/5 Total de 8 Avaliações |
Desenvolvedor | Playwrite |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://www.theplaywrite.com |
Idiomas Suportados | 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" } } |