Disable AutoScroll

Disables middle-click autoscrolling (often confused with 'smooth scrolling')

O que é Disable AutoScroll?

Disable AutoScroll é uma extensão do Chrome desenvolvida por Slackwise, e sua principal característica é "Disables middle-click autoscrolling (often confused with 'smooth scrolling')".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Disable AutoScroll

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

                        All this extension does is disable the middle-click "AutoScroll" feature so you don't accidentally activate it when trying to middle-click a link with your scroll-wheel to open a link in a new tab.

The screenshot is of the ENTIRE source-code, and it's all on GitHub as well.                    

Informações Básicas da Extensão

Nome Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
URL Oficial https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
Descrição Disables middle-click autoscrolling (often confused with 'smooth scrolling')
Tamanho do Arquivo 13.33 KB
Contagem de Instalações 1,455
Versão Atual 1.2
Última Atualização 2024-01-01
Data de Publicação 2022-07-14
Classificação 4.58/5 Total de 24 Avaliações
Desenvolvedor Slackwise
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Slackwise/disable-autoscroll-webextension
URL da Página de Ajuda https://github.com/Slackwise/disable-autoscroll-webextension/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable AutoScroll",
    "short_name": "Disable AutoScroll",
    "description": "Disables middle-click autoscrolling (often confused with 'smooth scrolling')",
    "version": "1.2",
    "author": "Slackwise",
    "icons": {
        "48": "disable-autoscroll-48.png",
        "125": "disable-autoscroll-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "disable-autoscroll.js"
            ]
        }
    ]
}