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
官方網址 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"
    ]
}