Auto Zoom
This extension automatically zooms in a page with a small font for Chrome users.
What is Auto Zoom?
Auto Zoom is a Chrome extension developed by AM, and its main feature is "This extension automatically zooms in a page with a small font for Chrome users.".
Extension Screenshots
Download Auto Zoom Extension CRX File
Download Auto Zoom extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Auto Zoom |
ID | dcicehbfkfjclggmmgpknoolmfagepph |
Official URL | https://chromewebstore.google.com/detail/auto-zoom/dcicehbfkfjclggmmgpknoolmfagepph |
Description | This extension automatically zooms in a page with a small font for Chrome users. |
File Size | 60.89 KB |
Installation Count | 571 |
Current Version | 1.0.0 |
Last Updated | 2016-07-06 |
Publish Date | 2016-07-06 |
Rating | 4.00/5 Total 3 Ratings |
Developer | AM |
Payment Type | free |
Supported Languages | 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'" } |