Gmail image fit

Resize the images in the mail body to prevent the horizontal scrolling

Co to jest Gmail image fit?

Gmail image fit to rozszerzenie Chrome opracowane przez Flavio, a jego główną funkcją jest „Resize the images in the mail body to prevent the horizontal scrolling”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Gmail image fit

Pobierz pliki rozszerzeń Gmail image fit 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

                        This extension will automaticaly set the maximun width of all the images in the body mail (on gmail.com) to fit in the mail's viewport, to prevent annoying horizontal scrolling.

Particulary useful when you receive many full-sized screenshoot.

The extension doesn't need any permission and does not collect any kind of data                    

Podstawowe informacje o rozszerzeniu

Nazwa Gmail image fit Gmail image fit
ID ofglaiipngecdpdioidnflbfcplpiapa
Oficjalny URL https://chromewebstore.google.com/detail/gmail-image-fit/ofglaiipngecdpdioidnflbfcplpiapa
Opis Resize the images in the mail body to prevent the horizontal scrolling
Rozmiar pliku 109 KB
Liczba instalacji 1,113
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-01-21
Data Publikacji 2021-01-21
Ocena 4.00/5 Łącznie 6 Oceny
Deweloper Flavio
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Omnia89/gmail_image_fit
Adres URL Strony Pomocy https://github.com/Omnia89/gmail_image_fit/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail image fit",
    "version": "1.0",
    "description": "Resize the images in the mail body to prevent the horizontal scrolling",
    "manifest_version": 2,
    "author": "Flavio Cristoforetti, https:\/\/github.com\/Omnia89",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png",
        "512": "icons\/icon512.png"
    }
}