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.」です。
拡張機能のスクリーンショット
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.                     拡張機能の基本情報
| 名前 |  | 
| ID | dcicehbfkfjclggmmgpknoolmfagepph | 
| 公式URL | 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'"
} | |