AutoScrolling

Auto-scrolling without mouse-wheel

O que é AutoScrolling?

AutoScrolling é uma extensão do Chrome desenvolvida por pinkienort, e sua principal característica é "Auto-scrolling without mouse-wheel".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AutoScrolling

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

                        This plugin enables you auto-scrolling without using mouse wheel. When you click the icon on the toolbar, the auto-scrolling is started. If you want to stop, then click the icon again. And the scrolling is also stopped when you switch the active tab in the active window.

The plugin helps you for such situation, that you are doing some task or games with watching the web sites like Twitter or Tumblr.

If you find some bugs or request some features, please sends me mails or create issues in the homepage of this plugin.

Thank you for users.                    

Informações Básicas da Extensão

Nome AutoScrolling AutoScrolling
ID maibgninmecbokncboknddpeaedfioea
URL Oficial https://chromewebstore.google.com/detail/autoscrolling/maibgninmecbokncboknddpeaedfioea
Descrição Auto-scrolling without mouse-wheel
Tamanho do Arquivo 233 KB
Contagem de Instalações 1,046
Versão Atual 1.0.0
Última Atualização 2019-03-26
Data de Publicação 2019-03-25
Classificação 2.67/5 Total de 3 Avaliações
Desenvolvedor pinkienort
Tipo de Pagamento free
Site da Extensão https://github.com/pinkienort/AutoScrolling
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AutoScrolling",
    "version": "1.0.0",
    "author": "pinkienort",
    "homepage_url": "https:\/\/github.com\/pinkienort\/AutoScrolling",
    "description": "Auto-scrolling without mouse-wheel",
    "permissions": [
        "storage",
        "tabs",
        "contextMenus"
    ],
    "options_ui": {
        "page": "dist\/options.html"
    },
    "icons": {
        "48": "icons\/mouse-48.png",
        "96": "icons\/mouse-96.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/mouse-16.png",
            "32": "icons\/mouse-32.png",
            "48": "icons\/mouse-48.png"
        },
        "default_title": "Enable\/Disable auto scroll"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ],
            "css": [
                "dist\/style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "commands": {
        "single-click-action": {
            "suggested_key": {
                "default": "Alt+Shift+PageDown"
            },
            "description": "Fire a single click on browser icon"
        }
    }
}