smartZoom

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

Hvad er smartZoom?

smartZoom er en Chrome-udvidelse udviklet af Aneesh Durg, og dens hovedfunktion er "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Udvidelsesskærmbilleder

screenshot

Download smartZoom-udvidelses-CRX-fil

Download smartZoom-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
Officiel URL https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Beskrivelse Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
Filstørrelse 20.99 KB
Antal Installationer 65
Nuværende Version 1.2.2
Senest Opdateret 2016-05-24
Udgivelsesdato 2016-05-23
Udvikler Aneesh Durg
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/aneeshdurg/smartZoom
Understøttede Sprog 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"
    }
}