Ctrl Zoom

Ctrl + touchpad scroll to zoom

Ctrl Zoom क्या है?

Ctrl Zoom Hempe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ctrl + touchpad scroll to zoom"।

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

screenshot
screenshot
screenshot

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

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

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

                        This extension adds back the Ctrl + scroll zoom for touchpads.

The reason this extension exists, is that ctrl + touchpad scroll zooming was removed from Chrome, and the "Bug" is marked as WontFix (https://bugs.chromium.org/p/chromium/issues/detail?id=878694).                    

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

नाम Ctrl Zoom Ctrl Zoom
ID indpmklmjbcfkbnbhoknlggplddednhp
आधिकारिक URL https://chromewebstore.google.com/detail/ctrl-zoom/indpmklmjbcfkbnbhoknlggplddednhp
विवरण Ctrl + touchpad scroll to zoom
फ़ाइल का आकार 41.45 KB
स्थापना संख्या 927
वर्तमान संस्करण 1.5
अंतिम अपडेट 2022-10-25
प्रकाशन तिथि 2019-11-26
रेटिंग 4.90/5 कुल 10 रेटिंग्स
डेवलपर Hempe
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/hempe/ctrlZoom
गोपनीयता नीति पृष्ठ URL https://github.com/hempe/ctrlZoom/blob/master/privacy-policy.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ctrl Zoom",
    "version": "1.5",
    "description": "Ctrl + touchpad scroll to zoom",
    "homepage_url": "https:\/\/github.com\/hempe\/ctrlZoom",
    "author": "hempe",
    "short_name": "ctrlZoom",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "js\/popup.js",
                "js\/ctrlZoom.js"
            ]
        }
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_popup": "options.html",
        "default_title": "ChromiePop"
    }
}