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开发的Chrome扩展程序,该扩展的主要功能是“Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.”。

扩展截图

screenshot

下载smartZoom扩展crx文件

下载smartZoom扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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