Enhanced Image Viewer

Enhances the browser's default image viewer

Enhanced Image Viewer란 무엇입니까?

Enhanced Image Viewer은(는) Sebastian Blask에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhances the browser's default image viewer"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Enhanced Image Viewer
=====================

Enhances the browser's default image viewer with:

 - more scaling modes (configurable in the preferences - click toolbar button)
   to cycle through when left-clicking
 - easy rotation (in 90° steps) using `l` and `r` for left and right rotation
   respectively
 - scaling mode and rotation can be remembered so they are applied when opening
   other images
 - configurable background color
 - image information and information about scaling mode and rotation are
   briefly shown when opening an image and can be toggled by pressing `i`

Default browser zoom (ctrl-scroll/ctrl-plus/ctrl-minus) can still be used, but
probably only works as expected in natural size scaling mode. If the chosen
scaling mode is fitting the image to width or height, zooming does not change
the image size.

Feedback
--------

You can report bugs or make feature requests on
https://github.com/sblask/webextension-enhanced-image-viewer

Patches are welcome.                    

확장 프로그램 기본 정보

이름 Enhanced Image Viewer Enhanced Image Viewer
ID hinoflbjclgnnaccbpbenmjomjmiafmc
공식 URL https://chromewebstore.google.com/detail/enhanced-image-viewer/hinoflbjclgnnaccbpbenmjomjmiafmc
설명 Enhances the browser's default image viewer
파일 크기 106 KB
설치 횟수 1,911
현재 버전 1.1.1
최근 업데이트 2020-03-03
출시 날짜 2020-03-03
평점 4.21/5 총 14 개의 평점
개발자 Sebastian Blask
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sblask/webextension-enhanced-image-viewer
도움말 페이지 URL https://github.com/sblask/webextension-enhanced-image-viewer
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": false,
        "default_popup": "options\/options.html",
        "default_title": "__MSG_browserActionLabelDefault__"
    },
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-enhanced-image-viewer",
    "icons": {
        "128": "icon-128x128.png",
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "",
        "storage",
        "webNavigation",
        "webRequest"
    ],
    "default_locale": "en",
    "version": "1.1.1"
}