Image Zoom

Zoom in or zoom out of an image for better view

什么是Image Zoom?

Image Zoom是由Shang Liang开发的Chrome扩展程序,该扩展的主要功能是“Zoom in or zoom out of an image for better view”。

扩展截图

下载Image Zoom扩展crx文件

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

扩展使用说明

                        Right click at an image, choose the "image zoom" option from the menu brings up the zoom view. You can further zoom in/out of the image and drag the image to pan around.                    

扩展基本信息

名称 Image Zoom Image Zoom
ID hjapegicpojdkoinhhdpjmpkomkjccaa
官方URL https://chromewebstore.google.com/detail/image-zoom/hjapegicpojdkoinhhdpjmpkomkjccaa
简介 Zoom in or zoom out of an image for better view
文件大小 89.15 KB
安装次数 1,550
当前版本 0.0.1
更新时间 2020-08-03
上架时间 2020-08-03
评分 3.94/5 共17次评分
开发者 Shang Liang
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Zoom",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Zoom in or zoom out of an image for better view",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "injection.css",
        "icon-close.png",
        "icon-minus.png",
        "icon-plus.png"
    ]
}