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
    }
}