Quick Zoom

Enables browser zoom with Cmd + mouse wheel

Co to jest Quick Zoom?

Quick Zoom to rozszerzenie Chrome opracowane przez Tom Scott, a jego główną funkcją jest „Enables browser zoom with Cmd + mouse wheel”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Quick Zoom

Pobierz pliki rozszerzeń Quick Zoom w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
Oficjalny URL https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
Opis Enables browser zoom with Cmd + mouse wheel
Rozmiar pliku 15.84 KB
Liczba instalacji 2,339
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-12-24
Data Publikacji 2020-11-01
Ocena 4.05/5 Łącznie 19 Oceny
Deweloper Tom Scott
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Silver292/quick-zoom
Adres URL Strony Pomocy https://github.com/Silver292/quick-zoom/issues
Obsługiwane Języki 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
}