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 nizioleque द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Zoom in on a specific part of the website, like you would with a touchpad gesture!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mouse Pinch-To-Zoom एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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