smartZoom

Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.

smartZoom क्या है?

smartZoom Aneesh Durg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https."।

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

screenshot

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

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

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

                        Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https. 

You need to allow the webcam to be used on the pages on which you want to use smartZoom. This is a one-time step.                    

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

नाम smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
आधिकारिक URL https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
विवरण Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
फ़ाइल का आकार 20.99 KB
स्थापना संख्या 65
वर्तमान संस्करण 1.2.2
अंतिम अपडेट 2016-05-24
प्रकाशन तिथि 2016-05-23
डेवलपर Aneesh Durg
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/aneeshdurg/smartZoom
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "smartZoom",
    "description": "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.",
    "version": "1.2.2",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "utils.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}