Breakup

Breaks up walls of text into readable paragraphs, applies a different font and colouring.

¿Qué es Breakup?

Breakup es una extensión de Chrome desarrollada por Playwrite, y su función principal es "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Breakup

Descarga archivos de extensión Breakup en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Breakup Breakup
ID janccjlmbelkhnffmbfimnklelkdfcoh
URL Oficial https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh
Descripción Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Tamaño del Archivo 111 KB
Cantidad de Instalaciones 199
Versión Actual 1.11
Última Actualización 2014-09-22
Fecha de Publicación 2014-09-22
Calificación 4.50/5 Total de 8 Calificaciones
Desarrollador Playwrite
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://www.theplaywrite.com
Idiomas Soportados 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"
    }
}