SmoothZoom – Quick Page Zoom

Pinch-to-zoom convenience, now on your desktop.

Что такое SmoothZoom – Quick Page Zoom?

SmoothZoom – Quick Page Zoom - это расширение Chrome, разработанное KristijanRoss, и его основная функция - "Pinch-to-zoom convenience, now on your desktop.".

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

screenshot
screenshot

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

Скачайте файлы расширений SmoothZoom – Quick Page Zoom в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Hold right-click and spin the mouse wheel to zoom toward the cursor. Enjoy the convenience of pinch-to-zoom functionality from touch screens, now available on your desktop.

Try it out on this DEMO website, without downloading: https://zoom.k1k1.dev/

Many touchpads support pinch-to-zoom in a way that they trigger the built-in page zoom. You can intercept this action by changing the zoom activation key from "RClick" to "Ctrl". This way, you don't need a mouse wheel to use SmoothZoom!                    

Основная информация о расширении

Название SmoothZoom – Quick Page Zoom SmoothZoom – Quick Page Zoom
ID nlloamlgdioincflcopfgkbikjgaiihg
Официальный URL https://chromewebstore.google.com/detail/smoothzoom-%E2%80%93-quick-page-z/nlloamlgdioincflcopfgkbikjgaiihg
Описание Pinch-to-zoom convenience, now on your desktop.
Размер файла 236 KB
Количество установок 1,242
Текущая Версия 1.2
Последнее Обновление 2023-06-06
Дата публикации 2022-03-21
Рейтинг 4.77/5 Всего 35 оценок
Разработчик KristijanRoss
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://zoom.k1k1.dev
URL страницы политики конфиденциальности https://ednevnik.plus/politika-privatnosti
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SmoothZoom \u2013 Quick Page Zoom",
    "version": "1.2",
    "description": "Pinch-to-zoom convenience, now on your desktop.",
    "author": "Kristijan Rosandi\u0107",
    "offline_enabled": true,
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "service_worker": "background\/service-worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject\/content-script.js"
            ],
            "css": [
                "inject\/style.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "inject\/frame-messenger.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ]
}