smartZoom

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

O que é smartZoom?

smartZoom é uma extensão do Chrome desenvolvida por Aneesh Durg, e sua principal característica é "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão smartZoom

Baixe arquivos de extensão smartZoom no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
URL Oficial https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Descrição Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
Tamanho do Arquivo 20.99 KB
Contagem de Instalações 65
Versão Atual 1.2.2
Última Atualização 2016-05-24
Data de Publicação 2016-05-23
Desenvolvedor Aneesh Durg
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/aneeshdurg/smartZoom
Idiomas Suportados 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"
    }
}