Reading Ruler

This is a simple reading ruler, useful when you are reading long texts on web.

Reading Ruler란 무엇입니까?

Reading Ruler은(는) Denison Linus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is a simple reading ruler, useful when you are reading long texts on web."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Reading Ruler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Reading Ruler is a Google Chrome extension that helps you to read long texts on web pages. This tool can assist dyslexic readers to keep their place on the page they are reading.

Features:
* Highlight current reading line
* Move the current line with arrow keys
* Automatic jump to next/previous page
* Smart adjustment when page resizes
* Color, opacity and Shadow adjustments

Usage:
* Double click on text to start
* Key Up/Down to navigate
* ESC to cancel

Data Protection FAQ:
* Does the extension collect any user data?
** No, the Reading Ruler does not collect any kind of data.

* Does the extension track users?
** No, the Reading Ruler does not track users.

* Does the extension send data to any server?
** No, the Reading Ruler does not use any kind of server connection. All the processing is doing locally.

* Why does the extension need 'read and change websites' permission?
** Because the Reading Ruler needs the information of website elements to calculate and render the ruler.

Source Code:
* https://github.com/denisonlinus/reading-ruler                    

확장 프로그램 기본 정보

이름 Reading Ruler Reading Ruler
ID phiedfcbjfjagnjikfbobmldbpmdcpfk
공식 URL https://chromewebstore.google.com/detail/reading-ruler/phiedfcbjfjagnjikfbobmldbpmdcpfk
설명 This is a simple reading ruler, useful when you are reading long texts on web.
파일 크기 37.38 KB
설치 횟수 25,539
현재 버전 1.4
최근 업데이트 2018-05-01
출시 날짜 2018-05-01
평점 2.98/5 총 58 개의 평점
개발자 Denison Linus
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/denisonlinus/reading-ruler
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reading Ruler",
    "description": "This is a simple reading ruler, useful when you are reading long texts on web.",
    "version": "1.4",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.0.3.min.js",
                "highlighter.js"
            ]
        }
    ]
}