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
Eメール [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"
    }
}