Gmail image fit
Resize the images in the mail body to prevent the horizontal scrolling
¿Qué es Gmail image fit?
Gmail image fit es una extensión de Chrome desarrollada por Flavio, y su función principal es "Resize the images in the mail body to prevent the horizontal scrolling".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Gmail image fit
Descarga archivos de extensión Gmail image fit en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Gmail image fit |
ID | ofglaiipngecdpdioidnflbfcplpiapa |
URL Oficial | https://chromewebstore.google.com/detail/gmail-image-fit/ofglaiipngecdpdioidnflbfcplpiapa |
Descripción | Resize the images in the mail body to prevent the horizontal scrolling |
Tamaño del Archivo | 109 KB |
Cantidad de Instalaciones | 1,113 |
Versión Actual | 1.0 |
Última Actualización | 2021-01-21 |
Fecha de Publicación | 2021-01-21 |
Calificación | 4.00/5 Total de 6 Calificaciones |
Desarrollador | Flavio |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Omnia89/gmail_image_fit |
URL de la Página de Ayuda | https://github.com/Omnia89/gmail_image_fit/issues |
Idiomas Soportados | 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" } } |