Breakup
Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Was ist Breakup?
Breakup ist eine Chrome-Erweiterung, die von Playwrite entwickelt wurde, und ihr Hauptmerkmal ist "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".
Erweiterungsscreenshots
Breakup-Erweiterungs-CRX-Datei herunterladen
Laden Sie Breakup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Breakup |
ID | janccjlmbelkhnffmbfimnklelkdfcoh |
Offizielle URL | https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh |
Beschreibung | Breaks up walls of text into readable paragraphs, applies a different font and colouring. |
Dateigröße | 111 KB |
Installationsanzahl | 199 |
Aktuelle Version | 1.11 |
Letztes Update | 2014-09-22 |
Veröffentlichungsdatum | 2014-09-22 |
Bewertung | 4.50/5 Insgesamt 8 Bewertungen |
Entwickler | Playwrite |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://www.theplaywrite.com |
Unterstützte Sprachen | 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" } } |