Breakup

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

Τι είναι το Breakup;

Το Breakup είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Playwrite, και η κύρια λειτουργία του είναι "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Breakup

Λήψη αρχείων επέκτασης Breakup σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Breakup Breakup
ID janccjlmbelkhnffmbfimnklelkdfcoh
Επίσημο URL https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh
Περιγραφή Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Μέγεθος Αρχείου 111 KB
Αριθμός Εγκαταστάσεων 199
Τρέχουσα Έκδοση 1.11
Τελευταία Ενημέρωση 2014-09-22
Ημερομηνία Δημοσίευσης 2014-09-22
Αξιολόγηση 4.50/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Playwrite
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.theplaywrite.com
Υποστηριζόμενες Γλώσσες 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"
    }
}