Simple Image Viewer

Default image viewer with advanced functionality: rotating, fitting, moving.

¿Qué es Simple Image Viewer?

Simple Image Viewer es una extensión de Chrome desarrollada por Doliman100, y su función principal es "Default image viewer with advanced functionality: rotating, fitting, moving.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Simple Image Viewer

Descarga archivos de extensión Simple 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
* No false positives. Detects image tabs in the same way as the browser.
* No flicker. Loads before the default viewer.
* No appearance changes. It can be changed by other extensions.
* The fitting type changing stretches small images.
* Rotation around center.
* Window resizing centers the image.
* Zoom both to the window center and to the cursor.
* Integration into the default zoom system. Doesn't affect the page's origin.
* Panning uses scrollbars.
* Support for custom passive scrollbars.

Shortcuts
* [R] - Rotate CW 90 degrees
* [Shift]+[R] - Rotate CCW 90 degrees
* [1] - Actual size
* [2] - Fill (Cover)
* [3] - Fit
* [LMB drag] - Panning

You can report bugs on
https://github.com/Doliman100/Simple-Image-Viewer                    

Información Básica de la Extensión

Nombre Simple Image Viewer Simple Image Viewer
ID ohkbjcfpicefkagfejabhddfbmkeiojm
URL Oficial https://chromewebstore.google.com/detail/simple-image-viewer/ohkbjcfpicefkagfejabhddfbmkeiojm
Descripción Default image viewer with advanced functionality: rotating, fitting, moving.
Tamaño del Archivo 8.91 KB
Cantidad de Instalaciones 615
Versión Actual 3.0
Última Actualización 2022-05-04
Fecha de Publicación 2019-08-12
Calificación 4.00/5 Total de 7 Calificaciones
Desarrollador Doliman100
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Doliman100/Simple-Image-Viewer
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Default image viewer with advanced functionality: rotating, fitting, moving.",
    "homepage_url": "https:\/\/github.com\/Doliman100\/Simple-Image-Viewer",
    "manifest_version": 2,
    "name": "Simple Image Viewer",
    "offline_enabled": true,
    "permissions": [
        "management"
    ],
    "version": "3.0",
    "web_accessible_resources": [
        "script.js",
        "style.css"
    ]
}