Quick Zoom

Enables browser zoom with Cmd + mouse wheel

What is Quick Zoom?

Quick Zoom is a Chrome extension developed by Tom Scott, and its main feature is "Enables browser zoom with Cmd + mouse wheel".

Extension Screenshots

screenshot
screenshot
screenshot

Download Quick Zoom Extension CRX File

Download Quick Zoom extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
Official URL https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
Description Enables browser zoom with Cmd + mouse wheel
File Size 15.84 KB
Installation Count 2,339
Current Version 1.0.1
Last Updated 2020-12-24
Publish Date 2020-11-01
Rating 4.05/5 Total 19 Ratings
Developer Tom Scott
Email [email protected]
Payment Type free
Extension Website https://github.com/Silver292/quick-zoom
Help Page URL https://github.com/Silver292/quick-zoom/issues
Supported Languages 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
}