Image Zoom

Zoom in or zoom out of an image for better view

ما هو Image Zoom؟

Image Zoom هو إضافة Chrome تم تطويرها بواسطة Shang Liang، والميزة الرئيسية لها هي "Zoom in or zoom out of an image for better view".

لقطات شاشة التمديد

تحميل ملف CRX للإضافة Image Zoom

قم بتنزيل ملفات الامتداد Image Zoom بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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"
    ]
}