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
官方網址 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
}