Auto Zoom

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

Was ist Auto Zoom?

Auto Zoom ist eine Chrome-Erweiterung, die von AM entwickelt wurde, und ihr Hauptmerkmal ist "This extension automatically zooms in a page with a small font for Chrome users.".

Erweiterungsscreenshots

screenshot

Auto Zoom-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Zoom-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Auto Zoom Auto Zoom
ID dcicehbfkfjclggmmgpknoolmfagepph
Offizielle URL https://chromewebstore.google.com/detail/auto-zoom/dcicehbfkfjclggmmgpknoolmfagepph
Beschreibung This extension automatically zooms in a page with a small font for Chrome users.
Dateigröße 60.89 KB
Installationsanzahl 571
Aktuelle Version 1.0.0
Letztes Update 2016-07-06
Veröffentlichungsdatum 2016-07-06
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler AM
Zahlungsart free
Unterstützte Sprachen 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'"
}