Auto Zoom

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

Auto Zoom là gì?

Auto Zoom là một tiện ích mở rộng Chrome được phát triển bởi AM, và tính năng chính của nó là "This extension automatically zooms in a page with a small font for Chrome users.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto Zoom

Tải xuống các tệp mở rộng Auto Zoom dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Auto Zoom Auto Zoom
ID dcicehbfkfjclggmmgpknoolmfagepph
URL Chính Thức https://chromewebstore.google.com/detail/auto-zoom/dcicehbfkfjclggmmgpknoolmfagepph
Mô tả This extension automatically zooms in a page with a small font for Chrome users.
Kích Thước Tệp 60.89 KB
Số Lần Cài Đặt 571
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2016-07-06
Ngày Phát Hành 2016-07-06
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển AM
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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'"
}