Quick Zoom

Enables browser zoom with Cmd + mouse wheel

Hvad er Quick Zoom?

Quick Zoom er en Chrome-udvidelse udviklet af Tom Scott, og dens hovedfunktion er "Enables browser zoom with Cmd + mouse wheel".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Quick Zoom-udvidelses-CRX-fil

Download Quick Zoom-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
Officiel URL https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
Beskrivelse Enables browser zoom with Cmd + mouse wheel
Filstørrelse 15.84 KB
Antal Installationer 2,339
Nuværende Version 1.0.1
Senest Opdateret 2020-12-24
Udgivelsesdato 2020-11-01
Bedømmelse 4.05/5 Samlet 19 Bedømmelser
Udvikler Tom Scott
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Silver292/quick-zoom
Hjælpeside-URL https://github.com/Silver292/quick-zoom/issues
Understøttede Sprog 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
}