Breakup

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

What is Breakup?

Breakup is a Chrome extension developed by Playwrite, and its main feature is "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".

Extension Screenshots

screenshot

Download Breakup Extension CRX File

Download Breakup extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Breakup Breakup
ID janccjlmbelkhnffmbfimnklelkdfcoh
Official URL https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh
Description Breaks up walls of text into readable paragraphs, applies a different font and colouring.
File Size 111 KB
Installation Count 199
Current Version 1.11
Last Updated 2014-09-22
Publish Date 2014-09-22
Rating 4.50/5 Total 8 Ratings
Developer Playwrite
Email [email protected]
Payment Type free
Extension Website http://www.theplaywrite.com
Supported Languages 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"
    }
}