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
Eメール [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
}