Smooth Scroller

Automatically scroll a page smoothly by pressing the "s" key

O que é Smooth Scroller?

Smooth Scroller é uma extensão do Chrome desenvolvida por katherinepeterson96, e sua principal característica é "Automatically scroll a page smoothly by pressing the "s" key".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Smooth Scroller

Baixe arquivos de extensão Smooth Scroller 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

                        Scroll down a webpage at a smooth pace with the press of a button.
Great for recording product/site demos or skimming a webpage. 

Press "S" to scroll.

Press "A" to scroll slowly
Press "D" to scroll fast

Press again to stop.                    

Informações Básicas da Extensão

Nome Smooth Scroller Smooth Scroller
ID hjgekbidepgklcmfjmnhdkgjbdodhggb
URL Oficial https://chromewebstore.google.com/detail/smooth-scroller/hjgekbidepgklcmfjmnhdkgjbdodhggb
Descrição Automatically scroll a page smoothly by pressing the "s" key
Tamanho do Arquivo 6.94 KB
Contagem de Instalações 38
Versão Atual 1.0
Última Atualização 2021-02-11
Data de Publicação 2021-02-10
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor katherinepeterson96
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smooth Scroller",
    "description": "Automatically scroll a page smoothly by pressing the \"s\" key",
    "version": "1.0",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}