MouseZoom

Zoom in and out with the right mouse button and left click or wheel.

MouseZoom क्या है?

MouseZoom https://www.meyerk.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Zoom in and out with the right mouse button and left click or wheel."।

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

screenshot

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

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

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

                        This is an extension for zooming with the right mouse button and the scroll wheel. Right mouse button + left mouse button snap-zoom functionality is also available.

*** FINALLY *** Chrome offers an official Zoom-API and starting with version 0.2.0, MouseZoom for Chrome is using it. Zooming should now be almost as enjoyable as on Firefox.

In case you're wondering: The "OSD", present in former versions of MouseZoom, has been removed. Instead, Chrome shows an "info bubble" that displays the current zoom level while zooming. Also, Chrome does not support changing the buit-in zoom-levels, so the option for changing those had to be removed as well.                    

एक्सटेंशन की मूल जानकारी

नाम MouseZoom MouseZoom
ID amdjnhbhdjpkbnjkmnpooebpfcgejahe
आधिकारिक URL https://chromewebstore.google.com/detail/mousezoom/amdjnhbhdjpkbnjkmnpooebpfcgejahe
विवरण Zoom in and out with the right mouse button and left click or wheel.
फ़ाइल का आकार 58.15 KB
स्थापना संख्या 1,892
वर्तमान संस्करण 0.2.1
अंतिम अपडेट 2015-08-30
प्रकाशन तिथि 2015-08-30
रेटिंग 3.68/5 कुल 57 रेटिंग्स
डेवलपर https://www.meyerk.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MouseZoom",
    "version": "0.2.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Zoom in and out with the right mouse button and left click or wheel.",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "MouseZoom",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "options.model.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}