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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}