Auto Zoom
This extension automatically zooms in a page with a small font for Chrome users.
Что такое Auto Zoom?
Auto Zoom - это расширение Chrome, разработанное AM, и его основная функция - "This extension automatically zooms in a page with a small font for Chrome users.".
Снимки экрана расширения
Скачать файл CRX расширения Auto Zoom
Скачайте файлы расширений 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 |
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'" } |