Quick Zoom

Enables browser zoom with Cmd + mouse wheel

Что такое Quick Zoom?

Quick Zoom - это расширение Chrome, разработанное Tom Scott, и его основная функция - "Enables browser zoom with Cmd + mouse wheel".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Quick Zoom

Скачайте файлы расширений 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
}