Reading Ruler

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

Cos'è Reading Ruler?

Reading Ruler è un'estensione di Chrome sviluppata da Denison Linus, e la sua funzione principale è "This is a simple reading ruler, useful when you are reading long texts on web.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Reading Ruler

Scarica i file di estensione Reading Ruler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Reading Ruler Reading Ruler
ID phiedfcbjfjagnjikfbobmldbpmdcpfk
URL Ufficiale https://chromewebstore.google.com/detail/reading-ruler/phiedfcbjfjagnjikfbobmldbpmdcpfk
Descrizione This is a simple reading ruler, useful when you are reading long texts on web.
Dimensione del File 37.38 KB
Conteggio Installazioni 25,539
Versione Corrente 1.4
Ultimo Aggiornamento 2018-05-01
Data di Pubblicazione 2018-05-01
Valutazione 2.98/5 Totale 58 Valutazioni
Sviluppatore Denison Linus
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/denisonlinus/reading-ruler
Lingue Supportate 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"
            ]
        }
    ]
}