Reading Ruler

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

Reading Rulerคืออะไร?

Reading Ruler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Denison Linus และคุณลักษณะหลักของมันคือ "This is a simple reading ruler, useful when you are reading long texts on web."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reading Ruler

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}