smartZoom

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

What is smartZoom?

smartZoom is a Chrome extension developed by Aneesh Durg, and its main feature is "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Extension Screenshots

screenshot

Download smartZoom Extension CRX File

Download smartZoom extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
Official URL https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Description Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
File Size 20.99 KB
Installation Count 65
Current Version 1.2.2
Last Updated 2016-05-24
Publish Date 2016-05-23
Developer Aneesh Durg
Email [email protected]
Payment Type free
Extension Website https://github.com/aneeshdurg/smartZoom
Supported Languages 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"
    }
}