Readable

This extension changes a page's so that it is easier on the eyes

Qu'est-ce que Readable ?

Readable est une extension Chrome développée par Mozzius, et sa fonction principale est "This extension changes a page's so that it is easier on the eyes".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Readable

Téléchargez les fichiers d'extension Readable 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

                        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)                    

Informations de Base sur l'Extension

Nom Readable Readable
ID mcfkanphaccondbcfdenamohbpfbploe
URL Officiel https://chromewebstore.google.com/detail/readable/mcfkanphaccondbcfdenamohbpfbploe
Description This extension changes a page's so that it is easier on the eyes
Taille du Fichier 9.49 KB
Nombre d'Installations 718
Version Actuelle 1.2
Dernière Mise à Jour 2017-04-05
Date de Publication 2017-04-05
Évaluation 3.50/5 Total 6 Évaluations
Développeur Mozzius
Type de Paiement free
Site Web de l'Extension http://mozzius.xyz
Langues Prises en Charge 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"
    ]
}