Reading Ruler

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

O que é Reading Ruler?

Reading Ruler é uma extensão do Chrome desenvolvida por Denison Linus, e sua principal característica é "This is a simple reading ruler, useful when you are reading long texts on web.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Reading Ruler

Baixe arquivos de extensão Reading Ruler no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Reading Ruler Reading Ruler
ID phiedfcbjfjagnjikfbobmldbpmdcpfk
URL Oficial https://chromewebstore.google.com/detail/reading-ruler/phiedfcbjfjagnjikfbobmldbpmdcpfk
Descrição This is a simple reading ruler, useful when you are reading long texts on web.
Tamanho do Arquivo 37.38 KB
Contagem de Instalações 25,539
Versão Atual 1.4
Última Atualização 2018-05-01
Data de Publicação 2018-05-01
Classificação 2.98/5 Total de 58 Avaliações
Desenvolvedor Denison Linus
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/denisonlinus/reading-ruler
Idiomas Suportados 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"
            ]
        }
    ]
}