Reading Ruler

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

Reading Ruler क्या है?

Reading Ruler Denison Linus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a simple reading ruler, useful when you are reading long texts on web."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reading Ruler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}