Quick Zoom

Enables browser zoom with Cmd + mouse wheel

Cos'è Quick Zoom?

Quick Zoom è un'estensione di Chrome sviluppata da Tom Scott, e la sua funzione principale è "Enables browser zoom with Cmd + mouse wheel".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Quick Zoom

Scarica i file di estensione Quick Zoom in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
URL Ufficiale https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
Descrizione Enables browser zoom with Cmd + mouse wheel
Dimensione del File 15.84 KB
Conteggio Installazioni 2,339
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-12-24
Data di Pubblicazione 2020-11-01
Valutazione 4.05/5 Totale 19 Valutazioni
Sviluppatore Tom Scott
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Silver292/quick-zoom
URL della Pagina di Aiuto https://github.com/Silver292/quick-zoom/issues
Lingue Supportate 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
}