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
Eメール [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"
    ]
}