SmoothZoom – Quick Page Zoom

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

Was ist SmoothZoom – Quick Page Zoom?

SmoothZoom – Quick Page Zoom ist eine Chrome-Erweiterung, die von KristijanRoss entwickelt wurde, und ihr Hauptmerkmal ist "Pinch-to-zoom convenience, now on your desktop.".

Erweiterungsscreenshots

screenshot
screenshot

SmoothZoom – Quick Page Zoom-Erweiterungs-CRX-Datei herunterladen

Laden Sie SmoothZoom – Quick Page Zoom-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name SmoothZoom – Quick Page Zoom SmoothZoom – Quick Page Zoom
ID nlloamlgdioincflcopfgkbikjgaiihg
Offizielle URL https://chromewebstore.google.com/detail/smoothzoom-%E2%80%93-quick-page-z/nlloamlgdioincflcopfgkbikjgaiihg
Beschreibung Pinch-to-zoom convenience, now on your desktop.
Dateigröße 236 KB
Installationsanzahl 1,242
Aktuelle Version 1.2
Letztes Update 2023-06-06
Veröffentlichungsdatum 2022-03-21
Bewertung 4.77/5 Insgesamt 35 Bewertungen
Entwickler KristijanRoss
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://zoom.k1k1.dev
URL der Datenschutzrichtlinien-Seite https://ednevnik.plus/politika-privatnosti
Unterstützte Sprachen 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
        }
    ]
}