Auto Zoom

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

Cos'è Auto Zoom?

Auto Zoom è un'estensione di Chrome sviluppata da AM, e la sua funzione principale è "This extension automatically zooms in a page with a small font for Chrome users.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Auto Zoom

Scarica i file di estensione Auto Zoom in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Auto Zoom Auto Zoom
ID dcicehbfkfjclggmmgpknoolmfagepph
URL Ufficiale https://chromewebstore.google.com/detail/auto-zoom/dcicehbfkfjclggmmgpknoolmfagepph
Descrizione This extension automatically zooms in a page with a small font for Chrome users.
Dimensione del File 60.89 KB
Conteggio Installazioni 571
Versione Corrente 1.0.0
Ultimo Aggiornamento 2016-07-06
Data di Pubblicazione 2016-07-06
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore AM
Tipo di Pagamento free
Lingue Supportate 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'"
}