FitWidth
Adds an additional zoom mode for the default image view.
Co to jest FitWidth?
FitWidth to rozszerzenie Chrome opracowane przez shylux, a jego główną funkcją jest „Adds an additional zoom mode for the default image view.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia FitWidth
Pobierz pliki rozszerzeń FitWidth w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | FitWidth |
ID | pggbiaffhagpmifmogkfibinbbgacled |
Oficjalny URL | https://chromewebstore.google.com/detail/fitwidth/pggbiaffhagpmifmogkfibinbbgacled |
Opis | Adds an additional zoom mode for the default image view. |
Rozmiar pliku | 37.4 KB |
Liczba instalacji | 490 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2021-04-21 |
Data Publikacji | 2019-09-21 |
Ocena | 5.00/5 Łącznie 6 Oceny |
Deweloper | shylux |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/shylux/FitWidth |
Adres URL Strony Pomocy | https://github.com/shylux/FitWidth/issues |
Obsługiwane Języki | 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 } |