Reading Ruler

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

Reading Ruler là gì?

Reading Ruler là một tiện ích mở rộng Chrome được phát triển bởi Denison Linus, và tính năng chính của nó là "This is a simple reading ruler, useful when you are reading long texts on web.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reading Ruler

Tải xuống các tệp mở rộng Reading Ruler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reading Ruler Reading Ruler
ID phiedfcbjfjagnjikfbobmldbpmdcpfk
URL Chính Thức https://chromewebstore.google.com/detail/reading-ruler/phiedfcbjfjagnjikfbobmldbpmdcpfk
Mô tả This is a simple reading ruler, useful when you are reading long texts on web.
Kích Thước Tệp 37.38 KB
Số Lần Cài Đặt 25,539
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2018-05-01
Ngày Phát Hành 2018-05-01
Đánh Giá 2.98/5 Tổng số 58 Đánh Giá
Nhà Phát Triển Denison Linus
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/denisonlinus/reading-ruler
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}