Simple Image Viewer

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

Vad är Simple Image Viewer?

Simple Image Viewer är en Chrome-tillägg utvecklad av Doliman100, och dess huvudfunktion är "Default image viewer with advanced functionality: rotating, fitting, moving.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Simple Image Viewer-förlängningens CRX-fil

Ladda ner Simple Image Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Simple Image Viewer Simple Image Viewer
ID ohkbjcfpicefkagfejabhddfbmkeiojm
Officiell webbadress https://chromewebstore.google.com/detail/simple-image-viewer/ohkbjcfpicefkagfejabhddfbmkeiojm
Beskrivning Default image viewer with advanced functionality: rotating, fitting, moving.
Filstorlek 8.91 KB
Antal Installationer 615
Aktuell Version 3.0
Senast Uppdaterad 2022-05-04
Publiceringsdatum 2019-08-12
Betyg 4.00/5 Totalt 7 Betyg
Utvecklare Doliman100
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Doliman100/Simple-Image-Viewer
Stödda Språk 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"
    ]
}