Auto Zoom

This extension automatically zooms in a page with a small font for Chrome users.

Qu'est-ce que Auto Zoom ?

Auto Zoom est une extension Chrome développée par AM, et sa fonction principale est "This extension automatically zooms in a page with a small font for Chrome users.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Auto Zoom

Téléchargez les fichiers d'extension Auto Zoom 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

                        Auto Zoom extension provides automatic zoom capability for Chrome users.

It is designed to help you keep the page text readable when opening websites with a less than optimal font size.

When active, the extension scans through the page to find a predominant text font size and adjusts the opened page zoom factor for this text to be at least 15 pixels tall.                    

Informations de Base sur l'Extension

Nom Auto Zoom Auto Zoom
ID dcicehbfkfjclggmmgpknoolmfagepph
URL Officiel https://chromewebstore.google.com/detail/auto-zoom/dcicehbfkfjclggmmgpknoolmfagepph
Description This extension automatically zooms in a page with a small font for Chrome users.
Taille du Fichier 60.89 KB
Nombre d'Installations 571
Version Actuelle 1.0.0
Dernière Mise à Jour 2016-07-06
Date de Publication 2016-07-06
Évaluation 4.00/5 Total 3 Évaluations
Développeur AM
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Auto Zoom",
    "description": "This extension automatically zooms in a page with a small font for Chrome users.",
    "version": "1.0.0",
    "icons": {
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "icon-active-38.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "chrome-content-script.bundle.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "chrome-background-script.bundle.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}