Quick Zoom

Enables browser zoom with Cmd + mouse wheel

Quick Zoom là gì?

Quick Zoom là một tiện ích mở rộng Chrome được phát triển bởi Tom Scott, và tính năng chính của nó là "Enables browser zoom with Cmd + mouse wheel".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Quick Zoom

Tải xuống các tệp mở rộng Quick Zoom dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
URL Chính Thức https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
Mô tả Enables browser zoom with Cmd + mouse wheel
Kích Thước Tệp 15.84 KB
Số Lần Cài Đặt 2,339
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-12-24
Ngày Phát Hành 2020-11-01
Đánh Giá 4.05/5 Tổng số 19 Đánh Giá
Nhà Phát Triển Tom Scott
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Silver292/quick-zoom
URL Trang Trợ Giúp https://github.com/Silver292/quick-zoom/issues
Ngôn Ngữ Được Hỗ Trợ 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
}