Snap Scroll

Delightfully fast and precise scrolling via point and click.

O que é Snap Scroll?

Snap Scroll é uma extensão do Chrome desenvolvida por Steven Meliopoulos, e sua principal característica é "Delightfully fast and precise scrolling via point and click.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Snap Scroll

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

                        Snap Scroll helps you read better!

Ever wonder why reading in books is more comfortable than on screens? It's because the text in books doesn't move! 
When you scroll the text you're reading, you're giving your eyes a hard time.
Snap Scroll brings the book experience to the screen by replacing that continuous movement with quick and predictable hops.

How does it work?

Keep your hands off that scroll wheel! When you finish reading a paragraph, just click directly below it using the middle mouse button (or the left and right button at the same time) to instantly bring the next paragraph to the top - like a virtual page turn! Because there is no interruption you'll be less distracted.

Give it a try and see your focus improve!                    

Informações Básicas da Extensão

Nome Snap Scroll Snap Scroll
ID kdegcljjpimkobjeejpfogokeedlbbje
URL Oficial https://chromewebstore.google.com/detail/snap-scroll/kdegcljjpimkobjeejpfogokeedlbbje
Descrição Delightfully fast and precise scrolling via point and click.
Tamanho do Arquivo 58.03 KB
Contagem de Instalações 273
Versão Atual 2.1.0
Última Atualização 2019-04-29
Data de Publicação 2019-04-28
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor Steven Meliopoulos
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": "Snap Scroll",
    "short_name": "Snap Scroll",
    "description": "Delightfully fast and precise scrolling via point and click.",
    "version": "2.1.0",
    "author": "Steven Meliopoulos",
    "icons": {
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_title": "Snap Scroll",
        "default_icon": {
            "16": "img\/action_icon_enabled_16.png",
            "24": "img\/action_icon_enabled_24.png",
            "32": "img\/action_icon_enabled_32.png"
        },
        "default_popup": "popup_main.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "shared.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "shared.js",
            "background.js"
        ]
    }
}