Mouse Pinch-To-Zoom

Zoom in on a specific part of the website, like you would with a touchpad gesture!

O que é Mouse Pinch-To-Zoom?

Mouse Pinch-To-Zoom é uma extensão do Chrome desenvolvida por nizioleque, e sua principal característica é "Zoom in on a specific part of the website, like you would with a touchpad gesture!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Mouse Pinch-To-Zoom

Baixe arquivos de extensão Mouse Pinch-To-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

                        Mouse Pinch-To-Zoom allows you to zoom in and out on a website without making everything huge and unreadable!

It works like a pinch-to-zoom gesture on a touchpad or a touchscreen, but all you need is a mouse wheel.

The extension offers three activation modes:
• Zoom by turning the mouse wheel while holding the Alt key
• Zoom by turning the mouse wheel while holding the left or right mouse button

You can also customize the speed and smoothness. All the settings are easily accessible by clicking on the extension logo.

If you experience any issues, please feel free to email me with a bug report.                    

Informações Básicas da Extensão

Nome Mouse Pinch-To-Zoom Mouse Pinch-To-Zoom
ID pffiadlahfhoniddbipeiiohjnlongfi
URL Oficial https://chromewebstore.google.com/detail/mouse-pinch-to-zoom/pffiadlahfhoniddbipeiiohjnlongfi
Descrição Zoom in on a specific part of the website, like you would with a touchpad gesture!
Tamanho do Arquivo 38.91 KB
Contagem de Instalações 8,000
Versão Atual 2.3
Última Atualização 2021-12-27
Data de Publicação 2021-02-20
Classificação 4.82/5 Total de 131 Avaliações
Desenvolvedor nizioleque
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mouse Pinch-To-Zoom",
    "description": "Zoom in on a specific part of the website, like you would with a touchpad gesture!",
    "version": "2.3",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/prep.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/handlers.js",
                "content\/configure.js",
                "content\/iframe.js",
                "content\/scale.js",
                "content\/absolute.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}