Readable
This extension changes a page's
so that it is easier on the eyesCos'è Readable?
Readable è un'estensione di Chrome sviluppata da Mozzius, e la sua funzione principale è "This extension changes a page's
so that it is easier on the eyes".Screenshot dell'Estensione
Scarica il file CRX dell'estensione Readable
Scarica i file di estensione Readable 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
Do you have to read a html page? Does it completely lack any sort of styling? Then Readable is for you! Readable adds the following styles to the body of a html page: color: #444; padding: 0 25%; line-height: 1.4em; font-family: 'Helvetica',sans-serif; The result: Your page is now readable! The background is slightly darker and the text is slightly lighter - lower contrast means it is easier to read. Padding is added to put the content in the middle of the page rather than from the edges, which is horrible to look at. The font is changed to Helvetica, which is a nice font. Activate Readable by clicking the icon next to the Omnibar. Note: this is not magic. Only use on sites with no CSS, it won't fix bad CSS (most of the time)
Informazioni di Base sull'Estensione
Nome | Readable |
ID | mcfkanphaccondbcfdenamohbpfbploe |
URL Ufficiale | https://chromewebstore.google.com/detail/readable/mcfkanphaccondbcfdenamohbpfbploe |
Descrizione | This extension changes a page's so that it is easier on the eyes |
Dimensione del File | 9.49 KB |
Conteggio Installazioni | 718 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2017-04-05 |
Data di Pubblicazione | 2017-04-05 |
Valutazione | 3.50/5 Totale 6 Valutazioni |
Sviluppatore | Mozzius |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://mozzius.xyz |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Readable", "description": "This extension changes a page's so that it is easier on the eyes", "version": "1.2", "browser_action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_title": "Add basic styles" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab" ] } |