Quick Zoom

Enables browser zoom with Cmd + mouse wheel

O que é Quick Zoom?

Quick Zoom é uma extensão do Chrome desenvolvida por Tom Scott, e sua principal característica é "Enables browser zoom with Cmd + mouse wheel".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Quick Zoom

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

                        Quick Zoom allows you to zoom into the page using your mouse wheel and holding down the Cmd key.

Similar to the Ctrl + mouse wheel on Windows, Quick Zoom brings this functionality to macOS.

Usage: 
macOS
Hold down your Cmd key and scroll with your mouse to zoom in and out of the page.

Windows
Hold down the Windows key and scroll with your mouse to zoom in and out of the page. The browser also allows you to zoom by holding Ctrl and scrolling with your mouse wheel without this extension.

For more information see the website.                    

Informações Básicas da Extensão

Nome Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
URL Oficial https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
Descrição Enables browser zoom with Cmd + mouse wheel
Tamanho do Arquivo 15.84 KB
Contagem de Instalações 2,339
Versão Atual 1.0.1
Última Atualização 2020-12-24
Data de Publicação 2020-11-01
Classificação 4.05/5 Total de 19 Avaliações
Desenvolvedor Tom Scott
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Silver292/quick-zoom
URL da Página de Ajuda https://github.com/Silver292/quick-zoom/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Zoom",
    "version": "1.0.1",
    "description": "Enables browser zoom with Cmd + mouse wheel",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": "false"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [],
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "manifest_version": 2
}