Auto Zoom

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

什麼是Auto Zoom?

Auto Zoom是由AM開發的Chrome擴展程式,該擴展的主要功能是“This extension automatically zooms in a page with a small font for Chrome users.”。

擴展截圖

screenshot

下載Auto Zoom擴展crx文件

下載Auto Zoom擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Auto Zoom Auto Zoom
ID dcicehbfkfjclggmmgpknoolmfagepph
官方網址 https://chromewebstore.google.com/detail/auto-zoom/dcicehbfkfjclggmmgpknoolmfagepph
簡介 This extension automatically zooms in a page with a small font for Chrome users.
檔案大小 60.89 KB
安裝次數 571
目前版本 1.0.0
更新時間 2016-07-06
上架時間 2016-07-06
評分 4.00/5 共 3 次評分
開發者 AM
付費類型 free
支援的語言 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'"
}