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

下载Simple Image Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}