Breakup
Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Cos'è Breakup?
Breakup è un'estensione di Chrome sviluppata da Playwrite, e la sua funzione principale è "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Breakup
Scarica i file di estensione Breakup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Breakup |
ID | janccjlmbelkhnffmbfimnklelkdfcoh |
URL Ufficiale | https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh |
Descrizione | Breaks up walls of text into readable paragraphs, applies a different font and colouring. |
Dimensione del File | 111 KB |
Conteggio Installazioni | 199 |
Versione Corrente | 1.11 |
Ultimo Aggiornamento | 2014-09-22 |
Data di Pubblicazione | 2014-09-22 |
Valutazione | 4.50/5 Totale 8 Valutazioni |
Sviluppatore | Playwrite |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.theplaywrite.com |
Lingue Supportate | 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" } } |