smartZoom

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

Wat is smartZoom?

smartZoom is een Chrome-extensie ontwikkeld door Aneesh Durg, en de belangrijkste functie is "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie smartZoom

Download smartZoom-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
Officiële URL https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Beschrijving Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
Bestandsgrootte 20.99 KB
Aantal Installaties 65
Huidige Versie 1.2.2
Laatst Bijgewerkt 2016-05-24
Publicatiedatum 2016-05-23
Ontwikkelaar Aneesh Durg
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/aneeshdurg/smartZoom
Ondersteunde Talen 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"
    }
}