smartZoom

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

Apa itu smartZoom?

smartZoom adalah ekstensi Chrome yang dikembangkan oleh Aneesh Durg, dan fitur utamanya adalah "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi smartZoom

Unduh file ekstensi smartZoom dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
URL Resmi https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Deskripsi Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
Ukuran File 20.99 KB
Jumlah Instalasi 65
Versi Saat Ini 1.2.2
Terakhir Diperbarui 2016-05-24
Tanggal Publikasi 2016-05-23
Pengembang Aneesh Durg
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/aneeshdurg/smartZoom
Bahasa yang Didukung 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"
    }
}