FitWidth

Adds an additional zoom mode for the default image view.

什么是FitWidth?

FitWidth是由shylux开发的Chrome扩展程序,该扩展的主要功能是“Adds an additional zoom mode for the default image view.”。

扩展截图

screenshot

下载FitWidth扩展crx文件

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

扩展使用说明

                        The Google Chrome image view has two different zoom modes. This extension adds a third one.

Fit height or width: Fits the image to the window size. 

Original size: Displays the image in the original size. Ignores the window size.

-New- Fit width: Fits the image to the window width. If the image is too  high a scollbar is used.

This new mode is perfect to view very thin and high images like Screencaps.

Source: https://github.com/shylux/FitWidth                    

扩展基本信息

名称 FitWidth FitWidth
ID pggbiaffhagpmifmogkfibinbbgacled
官方URL https://chromewebstore.google.com/detail/fitwidth/pggbiaffhagpmifmogkfibinbbgacled
简介 Adds an additional zoom mode for the default image view.
文件大小 37.4 KB
安装次数 490
当前版本 1.1
更新时间 2021-04-21
上架时间 2019-09-21
评分 5.00/5 共6次评分
开发者 shylux
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/shylux/FitWidth
帮助页面URL https://github.com/shylux/FitWidth/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FitWidth",
    "version": "1.1",
    "description": "Adds an additional zoom mode for the default image view.",
    "icons": {
        "128": "zoomplus.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "maximg.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "manifest_version": 2
}