Image Zoom

Zoom in or zoom out of an image for better view

Co to jest Image Zoom?

Image Zoom to rozszerzenie Chrome opracowane przez Shang Liang, a jego główną funkcją jest „Zoom in or zoom out of an image for better view”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Image Zoom

Pobierz pliki rozszerzeń Image Zoom w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Image Zoom Image Zoom
ID hjapegicpojdkoinhhdpjmpkomkjccaa
Oficjalny URL https://chromewebstore.google.com/detail/image-zoom/hjapegicpojdkoinhhdpjmpkomkjccaa
Opis Zoom in or zoom out of an image for better view
Rozmiar pliku 89.15 KB
Liczba instalacji 1,550
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2020-08-03
Data Publikacji 2020-08-03
Ocena 3.94/5 Łącznie 17 Oceny
Deweloper Shang Liang
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}