Simple Image Viewer

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

Co je Simple Image Viewer?

Simple Image Viewer je rozšíření Chrome vyvinuté Doliman100, a jeho hlavní funkcí je „Default image viewer with advanced functionality: rotating, fitting, moving.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Simple Image Viewer

Stáhněte si soubory rozšíření Simple Image Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Simple Image Viewer Simple Image Viewer
ID ohkbjcfpicefkagfejabhddfbmkeiojm
Oficiální URL https://chromewebstore.google.com/detail/simple-image-viewer/ohkbjcfpicefkagfejabhddfbmkeiojm
Popis Default image viewer with advanced functionality: rotating, fitting, moving.
Velikost souboru 8.91 KB
Počet instalací 615
Aktuální Verze 3.0
Poslední Aktualizace 2022-05-04
Datum Vydání 2019-08-12
Hodnocení 4.00/5 Celkem 7 Hodnocení
Vývojář Doliman100
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Doliman100/Simple-Image-Viewer
Podporované Jazyky 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"
    ]
}