Breakup
Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Co je Breakup?
Breakup je rozšíření Chrome vyvinuté Playwrite, a jeho hlavní funkcí je „Breaks up walls of text into readable paragraphs, applies a different font and colouring.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Breakup
Stáhněte si soubory rozšíření Breakup ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Breakup |
ID | janccjlmbelkhnffmbfimnklelkdfcoh |
Oficiální URL | https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh |
Popis | Breaks up walls of text into readable paragraphs, applies a different font and colouring. |
Velikost souboru | 111 KB |
Počet instalací | 199 |
Aktuální Verze | 1.11 |
Poslední Aktualizace | 2014-09-22 |
Datum Vydání | 2014-09-22 |
Hodnocení | 4.50/5 Celkem 8 Hodnocení |
Vývojář | Playwrite |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://www.theplaywrite.com |
Podporované Jazyky | 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" } } |