Reader Mode

Puts Google Chrome into read mode for a pleasant reading experience.

什麼是Reader Mode?

Reader Mode是由xcv58開發的Chrome擴展程式,該擴展的主要功能是“Puts Google Chrome into read mode for a pleasant reading experience.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Reader Mode擴展crx文件

下載Reader Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension is a forked version of https://chrome.google.com/webstore/detail/read-mode/nagcaahojecfeopbghgihcabgiepploa

Just click on the glasses icon in the address bar, the current page will turn into a nice-to-read black on white page allowing you to read without forcing your eyes. Ads and Flash animations are also removed while on read-mode. Click the icon again and everything will go back to normal.

Use Alt+F to toggle Reader Mode.

Use Alt+1, Alt+2, Alt+3 to decrease, increase, reset font size.                    

擴展基本資訊

名稱 Reader Mode Reader Mode
ID ihgjiapheabakagbnbaminbheoihgajn
官方網址 https://chromewebstore.google.com/detail/reader-mode/ihgjiapheabakagbnbaminbheoihgajn
簡介 Puts Google Chrome into read mode for a pleasant reading experience.
檔案大小 207 KB
安裝次數 2,885
目前版本 1.0.9
更新時間 2015-05-07
上架時間 2015-05-07
評分 2.75/5 共 20 次評分
開發者 xcv58
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reader Mode",
    "version": "1.0.9",
    "author": "xcv58",
    "description": "Puts Google Chrome into read mode for a pleasant reading experience.",
    "icons": {
        "128": "images\/icon-128.png",
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png"
    },
    "background": {
        "scripts": [
            "js\/json2.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "stylesheets\/reader.css"
            ],
            "js": [
                "js\/reader.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_icon": "images\/icon-enabled.png",
        "default_title": "Toggle Read Mode."
    },
    "commands": {
        "decrease-fontsize": {
            "suggested_key": {
                "default": "Alt+1",
                "mac": "Alt+1"
            },
            "description": "decrease font size."
        },
        "increase-fontsize": {
            "suggested_key": {
                "default": "Alt+2",
                "mac": "Alt+2"
            },
            "description": "increase font size."
        },
        "reset-fontsize": {
            "suggested_key": {
                "default": "Alt+3",
                "mac": "Alt+3"
            },
            "description": "reset font size."
        },
        "_execute_page_action": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            }
        }
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}