Breakup

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

Hvad er Breakup?

Breakup er en Chrome-udvidelse udviklet af Playwrite, og dens hovedfunktion er "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".

Udvidelsesskærmbilleder

screenshot

Download Breakup-udvidelses-CRX-fil

Download Breakup-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Breakup Breakup
ID janccjlmbelkhnffmbfimnklelkdfcoh
Officiel URL https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh
Beskrivelse Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Filstørrelse 111 KB
Antal Installationer 199
Nuværende Version 1.11
Senest Opdateret 2014-09-22
Udgivelsesdato 2014-09-22
Bedømmelse 4.50/5 Samlet 8 Bedømmelser
Udvikler Playwrite
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://www.theplaywrite.com
Understøttede Sprog 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"
    }
}