smartZoom

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

Cos'è smartZoom?

smartZoom è un'estensione di Chrome sviluppata da Aneesh Durg, e la sua funzione principale è "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione smartZoom

Scarica i file di estensione smartZoom in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
URL Ufficiale https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Descrizione Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
Dimensione del File 20.99 KB
Conteggio Installazioni 65
Versione Corrente 1.2.2
Ultimo Aggiornamento 2016-05-24
Data di Pubblicazione 2016-05-23
Sviluppatore Aneesh Durg
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/aneeshdurg/smartZoom
Lingue Supportate 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"
    }
}