smartZoom

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

Qu'est-ce que smartZoom ?

smartZoom est une extension Chrome développée par Aneesh Durg, et sa fonction principale est "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension smartZoom

Téléchargez les fichiers d'extension smartZoom au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
URL Officiel https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Description Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
Taille du Fichier 20.99 KB
Nombre d'Installations 65
Version Actuelle 1.2.2
Dernière Mise à Jour 2016-05-24
Date de Publication 2016-05-23
Développeur Aneesh Durg
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/aneeshdurg/smartZoom
Langues Prises en Charge 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"
    }
}