Image Zoom

Zoom in or zoom out of an image for better view

Image Zoom là gì?

Image Zoom là một tiện ích mở rộng Chrome được phát triển bởi Shang Liang, và tính năng chính của nó là "Zoom in or zoom out of an image for better view".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Image Zoom

Tải xuống các tệp mở rộng Image Zoom dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Image Zoom Image Zoom
ID hjapegicpojdkoinhhdpjmpkomkjccaa
URL Chính Thức https://chromewebstore.google.com/detail/image-zoom/hjapegicpojdkoinhhdpjmpkomkjccaa
Mô tả Zoom in or zoom out of an image for better view
Kích Thước Tệp 89.15 KB
Số Lần Cài Đặt 1,550
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-08-03
Ngày Phát Hành 2020-08-03
Đánh Giá 3.94/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Shang Liang
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}