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
官方網址 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"
    ]
}