Quick Zoom

Enables browser zoom with Cmd + mouse wheel

Vad är Quick Zoom?

Quick Zoom är en Chrome-tillägg utvecklad av Tom Scott, och dess huvudfunktion är "Enables browser zoom with Cmd + mouse wheel".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Quick Zoom-förlängningens CRX-fil

Ladda ner Quick Zoom-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
Officiell webbadress https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
Beskrivning Enables browser zoom with Cmd + mouse wheel
Filstorlek 15.84 KB
Antal Installationer 2,339
Aktuell Version 1.0.1
Senast Uppdaterad 2020-12-24
Publiceringsdatum 2020-11-01
Betyg 4.05/5 Totalt 19 Betyg
Utvecklare Tom Scott
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Silver292/quick-zoom
Hjälpsida URL https://github.com/Silver292/quick-zoom/issues
Stödda Språk 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
}