EasyReader

EasyReader can customize and improve the readability of long web articles

什么是EasyReader?

EasyReader是由https://antonj.se开发的Chrome扩展程序,该扩展的主要功能是“EasyReader can customize and improve the readability of long web articles”。

扩展截图

screenshot
screenshot
screenshot

下载EasyReader扩展crx文件

下载EasyReader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Make any article or part of a website more readable!

Usage:
1. Click extension button.
2. Select content on the page to read.
3. Enjoy.

Features:
★ Table of contents for headings are provided to the left.
★ Color, size, fonts and more are fully customizable.
★ Print, will print selected content only.
★ Code highlighting for code segments without other style.

Tips:
☞ Drag right edge of content to change width.
☞ Background can be customized using images, not only colors. Example for background color use: url("http://antonj.se/resources/css/images/paper-texture-warm.gif")
☞ Hovering lables in option page will give you the actual CSS property that is used.

Updates:
1.62 - Removed tabs permissions, since it was not needed
1.61 - Minor bug fixes (no scrolling in original page)
1.60 - Minor bug fixes
1.50 – Keyboard shortcut to activate/deactivate EasyReader (set in extension options)
1.46-7 – Bugfix: Print width always 100 %
1.45 – Printing with EasyReader activated will only print selected content.
1.44 – Bugfix: Flash content temporary hidden, when ER is activated. Since Chrome7 Flash would otherwise always be above ER content.
1.43 – Bugfix: Google Dictionary (by Google) extension popup will be on top of EasyReader content.
1.40 – Syntax highlight for code segments of articles, using http://code.google.com/p/google-code-prettify/                    

扩展基本信息

名称 EasyReader EasyReader
ID boamfheepdiallipiieadpmnklbhadhc
官方URL https://chromewebstore.google.com/detail/easyreader/boamfheepdiallipiieadpmnklbhadhc
简介 EasyReader can customize and improve the readability of long web articles
文件大小 63.34 KB
安装次数 42,080
当前版本 0.162
更新时间 2021-04-24
上架时间 2020-05-18
评分 4.56/5 共457次评分
开发者 https://antonj.se
电子邮箱 [email protected]
付费类型 free
扩展官网 http://antonj.se
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EasyReader",
    "version": "0.162",
    "description": "EasyReader can customize and improve the readability of long web articles",
    "options_page": "options.html",
    "permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "hotkeyListener.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "extension.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "EasyReader"
    },
    "icons": {
        "128": "img\/128-square.png"
    }
}