FitWidth
Adds an additional zoom mode for the default image view.
Что такое FitWidth?
FitWidth - это расширение Chrome, разработанное shylux, и его основная функция - "Adds an additional zoom mode for the default image view.".
Снимки экрана расширения
Скачать файл CRX расширения FitWidth
Скачайте файлы расширений FitWidth в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The Google Chrome image view has two different zoom modes. This extension adds a third one. Fit height or width: Fits the image to the window size. Original size: Displays the image in the original size. Ignores the window size. -New- Fit width: Fits the image to the window width. If the image is too high a scollbar is used. This new mode is perfect to view very thin and high images like Screencaps. Source: https://github.com/shylux/FitWidth
Основная информация о расширении
Название | FitWidth |
ID | pggbiaffhagpmifmogkfibinbbgacled |
Официальный URL | https://chromewebstore.google.com/detail/fitwidth/pggbiaffhagpmifmogkfibinbbgacled |
Описание | Adds an additional zoom mode for the default image view. |
Размер файла | 37.4 KB |
Количество установок | 490 |
Текущая Версия | 1.1 |
Последнее Обновление | 2021-04-21 |
Дата публикации | 2019-09-21 |
Рейтинг | 5.00/5 Всего 6 оценок |
Разработчик | shylux |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/shylux/FitWidth |
URL страницы помощи | https://github.com/shylux/FitWidth/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FitWidth", "version": "1.1", "description": "Adds an additional zoom mode for the default image view.", "icons": { "128": "zoomplus.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/\/*" ], "js": [ "jquery-2.1.1.min.js", "maximg.js" ], "css": [ "style.css" ], "run_at": "document_end", "all_frames": true } ], "manifest_version": 2 } |