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文件

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

扩展使用说明

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