Readable

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

Readableとは何ですか?

ReadableはMozziusによって開発されたChromeの拡張機能で、その主な機能は「This extension changes a page's so that it is easier on the eyes」です。

拡張機能のスクリーンショット

screenshot
screenshot

Readable拡張機能のCRXファイルをダウンロード

Readable拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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)                    

拡張機能の基本情報

名前 Readable Readable
ID mcfkanphaccondbcfdenamohbpfbploe
公式URL https://chromewebstore.google.com/detail/readable/mcfkanphaccondbcfdenamohbpfbploe
説明 This extension changes a page's so that it is easier on the eyes
ファイルサイズ 9.49 KB
インストール数 718
現在のバージョン 1.2
最終更新日 2017-04-05
公開日 2017-04-05
評価 3.50/5 合計 6 レビュー
開発者 Mozzius
支払い方法 free
拡張機能のウェブサイト http://mozzius.xyz
対応言語 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"
    ]
}