Content Scaler
This extension scales HTML content if the width of viewport was fixed.
Что такое Content Scaler?
Content Scaler - это расширение Chrome, разработанное hossshy, и его основная функция - "This extension scales HTML content if the width of viewport was fixed.".
Снимки экрана расширения
Скачать файл CRX расширения Content Scaler
Скачайте файлы расширений Content Scaler в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When you check HTML content which sets fixed viewport, this extension scales the content automatically. So you do not need to move horizontal scroll bar. If you want to use it to local HTML files you need to check 'Allow access to file URLs' on Extensions page.
Основная информация о расширении
Название | Content Scaler |
ID | dkmikdoddkbidgmbpiidfdaalhfpehph |
Официальный URL | https://chromewebstore.google.com/detail/content-scaler/dkmikdoddkbidgmbpiidfdaalhfpehph |
Описание | This extension scales HTML content if the width of viewport was fixed. |
Размер файла | 387 KB |
Количество установок | 64 |
Текущая Версия | 1.0.9 |
Последнее Обновление | 2017-06-28 |
Дата публикации | 2017-06-27 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | hossshy |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/hossshy/content-scaler |
URL страницы политики конфиденциальности | https://yuchesc.github.io/privacy.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Content Scaler", "description": "This extension scales HTML content if the width of viewport was fixed.", "version": "1.0.9", "icons": { "16": "image\/icon\/16.png", "64": "image\/icon\/64.png" }, "page_action": { "default_icon": "image\/icon\/16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "exclude_matches": [ "https:\/\/www.smbc-card.com\/*" ], "js": [ "js\/jquery-3.2.1.min.js", "js\/content_scripts.js" ], "run_at": "document_start" } ] } |