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
官方網址 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"
    }
}