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文件

下載Enhanced Image Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}