Quick Zoom

Enables browser zoom with Cmd + mouse wheel

什么是Quick Zoom?

Quick Zoom是由Tom Scott开发的Chrome扩展程序,该扩展的主要功能是“Enables browser zoom with Cmd + mouse wheel”。

扩展截图

screenshot
screenshot
screenshot

下载Quick Zoom扩展crx文件

下载Quick Zoom扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
官方URL https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
简介 Enables browser zoom with Cmd + mouse wheel
文件大小 15.84 KB
安装次数 2,339
当前版本 1.0.1
更新时间 2020-12-24
上架时间 2020-11-01
评分 4.05/5 共19次评分
开发者 Tom Scott
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Silver292/quick-zoom
帮助页面URL https://github.com/Silver292/quick-zoom/issues
支持的语言 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
}