Enhanced Image Viewer

Better Chrome image viewing experience

¿Qué es Enhanced Image Viewer?

Enhanced Image Viewer es una extensión de Chrome desarrollada por Branimir Klarić, y su función principal es "Better Chrome image viewing experience".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Enhanced Image Viewer

Descarga archivos de extensión Enhanced Image Viewer 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

                        Features:
✓ Position images in center or top left corner
✓ Set custom background color
✓ Zoom, rotate, pan and scroll images with improved controls
✓ Flip images horizontally and vertically
✓ Pixelate images for viewing pixel art and lossless formats
✓ Hide scrollbars
✓ View images in same tab
✓ Works with local files and incognito mode

All controls:
• Left mouse button click - scale image to fit window or to actual size
• Left mouse button drag - pan image
• Alt + Left mouse button drag - default Chrome drag behavior

• Mousewheel - zoom image
• Ctrl + Mousewheel - scroll vertically
• Shift + Mousewheel - scroll horizontally
• Alt + Mousewheel - rotate image

• H key - flip image horizontally
• V key - flip image vertically

• Q key - rotate image 90 degrees counter-clockwise
• E key - rotate image 90 degrees clockwise

• P key - pixelate image

Feel free to leave any feedback you might have. It will be addressed as soon as possible.

Icon made by Freepik (www.freepik.com) from www.flaticon.com                    

Información Básica de la Extensión

Nombre Enhanced Image Viewer Enhanced Image Viewer
ID gefiaaeadjbmhjndnhedfccdjjlgjhho
URL Oficial https://chromewebstore.google.com/detail/enhanced-image-viewer/gefiaaeadjbmhjndnhedfccdjjlgjhho
Descripción Better Chrome image viewing experience
Tamaño del Archivo 83.36 KB
Cantidad de Instalaciones 53,544
Versión Actual 4.5
Última Actualización 2024-03-04
Fecha de Publicación 2019-03-08
Calificación 4.17/5 Total de 216 Calificaciones
Desarrollador Branimir Klarić
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Enhanced Image Viewer",
    "description": "Better Chrome image viewing experience",
    "version": "4.5",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon24.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}