Mouse Pinch-To-Zoom

Zoom in on a specific part of the website, like you would with a touchpad gesture!

Что такое Mouse Pinch-To-Zoom?

Mouse Pinch-To-Zoom - это расширение Chrome, разработанное nizioleque, и его основная функция - "Zoom in on a specific part of the website, like you would with a touchpad gesture!".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Mouse Pinch-To-Zoom

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

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

                        Mouse Pinch-To-Zoom allows you to zoom in and out on a website without making everything huge and unreadable!

It works like a pinch-to-zoom gesture on a touchpad or a touchscreen, but all you need is a mouse wheel.

The extension offers three activation modes:
• Zoom by turning the mouse wheel while holding the Alt key
• Zoom by turning the mouse wheel while holding the left or right mouse button

You can also customize the speed and smoothness. All the settings are easily accessible by clicking on the extension logo.

If you experience any issues, please feel free to email me with a bug report.                    

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

Название Mouse Pinch-To-Zoom Mouse Pinch-To-Zoom
ID pffiadlahfhoniddbipeiiohjnlongfi
Официальный URL https://chromewebstore.google.com/detail/mouse-pinch-to-zoom/pffiadlahfhoniddbipeiiohjnlongfi
Описание Zoom in on a specific part of the website, like you would with a touchpad gesture!
Размер файла 38.91 KB
Количество установок 8,000
Текущая Версия 2.3
Последнее Обновление 2021-12-27
Дата публикации 2021-02-20
Рейтинг 4.82/5 Всего 131 оценок
Разработчик nizioleque
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mouse Pinch-To-Zoom",
    "description": "Zoom in on a specific part of the website, like you would with a touchpad gesture!",
    "version": "2.3",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "notifications"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options\/options.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/prep.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/handlers.js",
                "content\/configure.js",
                "content\/iframe.js",
                "content\/scale.js",
                "content\/absolute.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": false
    }
}