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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
อีเมล [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"
    ]
}