Image Zoom

Zoom in or zoom out of an image for better view

What is Image Zoom?

Image Zoom is a Chrome extension developed by Shang Liang, and its main feature is "Zoom in or zoom out of an image for better view".

Extension Screenshots

Download Image Zoom Extension CRX File

Download Image Zoom extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Image Zoom Image Zoom
ID hjapegicpojdkoinhhdpjmpkomkjccaa
Official URL https://chromewebstore.google.com/detail/image-zoom/hjapegicpojdkoinhhdpjmpkomkjccaa
Description Zoom in or zoom out of an image for better view
File Size 89.15 KB
Installation Count 1,550
Current Version 0.0.1
Last Updated 2020-08-03
Publish Date 2020-08-03
Rating 3.94/5 Total 17 Ratings
Developer Shang Liang
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}