Simple Auto Scroll

Simple speed-customizable auto scroll

O que é Simple Auto Scroll?

Simple Auto Scroll é uma extensão do Chrome desenvolvida por xjpablobrx, e sua principal característica é "Simple speed-customizable auto scroll".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Simple Auto Scroll

Baixe arquivos de extensão Simple Auto Scroll 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

                        1. What is it?

A speed-customizable auto-scroll Google Chrome extension.

2. Why?

A lot of times I find myself reading long texfiles, and after a while, I kind of wish I could just read them as if they were a movie. I've tried with the mouse (middle click) thingy, but it's just not practical and adjusting the speed is very tricky - not to mention that a lot of times it's just too fast.

3. Features

This extension allows you to easily change the auto-scroll speed and save it in three different modes; slow, medium and fast. A single click will stop the auto-scrolling.

Note: Does not work in Google related websites.                    

Informações Básicas da Extensão

Nome Simple Auto Scroll Simple Auto Scroll
ID dccjkemhmffnljlnnoffljpkhkfpldff
URL Oficial https://chrome.google.com/webstore/detail/simple-auto-scroll/dccjkemhmffnljlnnoffljpkhkfpldff
Descrição Simple speed-customizable auto scroll
Tamanho do Arquivo 12.31 KB
Contagem de Instalações 40,000
Versão Atual 0.1.4
Última Atualização 2018-12-17
Data de Publicação 2018-12-17
Classificação 4.04/5 Total de 214 Avaliações
Desenvolvedor xjpablobrx
Tipo de Pagamento free
Site da Extensão https://github.com/jpablobr/simple-auto-scroll
Idiomas Suportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Auto Scroll",
    "version": "0.1.4",
    "description": "Simple speed-customizable auto scroll",
    "icons": {
        "48": "icons\/autoscroll.png",
        "128": "icons\/autoscroll.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "",
        "default_icon": "icons\/autoscroll.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/simple_autoscroll.js"
            ],
            "run_at": "document_start"
        }
    ]
}