Middle Click Scroll

Clicking the middle click/wheel now takes you to the top of the page

O que é Middle Click Scroll?

Middle Click Scroll é uma extensão do Chrome desenvolvida por alarv, e sua principal característica é "Clicking the middle click/wheel now takes you to the top of the page".

Baixar o arquivo CRX da Extensão Middle Click Scroll

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

                        Give life to your mouse wheel click! By clicking the mouse wheel or the middle mouse click, you can now scroll to the top of the page or to the bottom! If you want to cancel your action, don't worry! 1 second after you keep the mouse wheel clicked, the event is cancelled, to avoid unwanted scrolls. Enjoy scrolling!                    

Informações Básicas da Extensão

Nome Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
URL Oficial https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Descrição Clicking the middle click/wheel now takes you to the top of the page
Tamanho do Arquivo 15.16 KB
Contagem de Instalações 195
Versão Atual 1.0
Última Atualização 2016-06-07
Data de Publicação 2016-06-07
Classificação 2.29/5 Total de 7 Avaliações
Desenvolvedor alarv
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": "Middle Click Scroll",
    "version": "1.0",
    "description": "Clicking the middle click\/wheel now takes you to the top of the page",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Alex",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}