smartZoom

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

Τι είναι το smartZoom;

Το smartZoom είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Aneesh Durg, και η κύρια λειτουργία του είναι "Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης smartZoom

Λήψη αρχείων επέκτασης smartZoom σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα smartZoom smartZoom
ID edhnoodpplcedbalpigcmgojicolfdbg
Επίσημο URL https://chromewebstore.google.com/detail/smartzoom/edhnoodpplcedbalpigcmgojicolfdbg
Περιγραφή Changes chrome's zoom value based off the user's distance from the camera. Requires the current tab to use https.
Μέγεθος Αρχείου 20.99 KB
Αριθμός Εγκαταστάσεων 65
Τρέχουσα Έκδοση 1.2.2
Τελευταία Ενημέρωση 2016-05-24
Ημερομηνία Δημοσίευσης 2016-05-23
Προγραμματιστής Aneesh Durg
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/aneeshdurg/smartZoom
Υποστηριζόμενες Γλώσσες 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"
    }
}