Breakup
Breaks up walls of text into readable paragraphs, applies a different font and colouring.
Qu'est-ce que Breakup ?
Breakup est une extension Chrome développée par Playwrite, et sa fonction principale est "Breaks up walls of text into readable paragraphs, applies a different font and colouring.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Breakup
Téléchargez les fichiers d'extension Breakup au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Breakup |
ID | janccjlmbelkhnffmbfimnklelkdfcoh |
URL Officiel | https://chromewebstore.google.com/detail/breakup/janccjlmbelkhnffmbfimnklelkdfcoh |
Description | Breaks up walls of text into readable paragraphs, applies a different font and colouring. |
Taille du Fichier | 111 KB |
Nombre d'Installations | 199 |
Version Actuelle | 1.11 |
Dernière Mise à Jour | 2014-09-22 |
Date de Publication | 2014-09-22 |
Évaluation | 4.50/5 Total 8 Évaluations |
Développeur | Playwrite |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.theplaywrite.com |
Langues Prises en Charge | 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" } } |