Breakup

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

Vad är Breakup?

Breakup är en Chrome-tillägg utvecklad av Playwrite, och dess huvudfunktion är "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".

Tilläggsskärmbilder

screenshot

Ladda ner Breakup-förlängningens CRX-fil

Ladda ner Breakup-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Breakup Breakup
ID janccjlmbelkhnffmbfimnklelkdfcoh
Officiell webbadress https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh
Beskrivning Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Filstorlek 111 KB
Antal Installationer 199
Aktuell Version 1.11
Senast Uppdaterad 2014-09-22
Publiceringsdatum 2014-09-22
Betyg 4.50/5 Totalt 8 Betyg
Utvecklare Playwrite
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://www.theplaywrite.com
Stödda Språk 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"
    }
}