Image Zoom

Zoom in or zoom out of an image for better view

Wat is Image Zoom?

Image Zoom is een Chrome-extensie ontwikkeld door Shang Liang, en de belangrijkste functie is "Zoom in or zoom out of an image for better view".

Extensie Screenshots

Download het CRX-bestand van de extensie Image Zoom

Download Image Zoom-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Image Zoom Image Zoom
ID hjapegicpojdkoinhhdpjmpkomkjccaa
Officiële URL https://chromewebstore.google.com/detail/image-zoom/hjapegicpojdkoinhhdpjmpkomkjccaa
Beschrijving Zoom in or zoom out of an image for better view
Bestandsgrootte 89.15 KB
Aantal Installaties 1,550
Huidige Versie 0.0.1
Laatst Bijgewerkt 2020-08-03
Publicatiedatum 2020-08-03
Beoordeling 3.94/5 Totaal 17 Beoordelingen
Ontwikkelaar Shang Liang
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}