Simple Image Viewer

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

Simple Image Viewer란 무엇입니까?

Simple Image Viewer은(는) Doliman100에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Default image viewer with advanced functionality: rotating, fitting, moving."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Simple Image Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Simple Image Viewer Simple Image Viewer
ID ohkbjcfpicefkagfejabhddfbmkeiojm
공식 URL https://chromewebstore.google.com/detail/simple-image-viewer/ohkbjcfpicefkagfejabhddfbmkeiojm
설명 Default image viewer with advanced functionality: rotating, fitting, moving.
파일 크기 8.91 KB
설치 횟수 615
현재 버전 3.0
최근 업데이트 2022-05-04
출시 날짜 2019-08-12
평점 4.00/5 총 7 개의 평점
개발자 Doliman100
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Doliman100/Simple-Image-Viewer
지원되는 언어 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"
    ]
}