Magnify

Hover over an image with a magnifying glass

Magnifyคืออะไร?

Magnify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย reinaldomagalhaes96 และคุณลักษณะหลักของมันคือ "Hover over an image with a magnifying glass"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Magnify

ดาวน์โหลดไฟล์ส่วนขยาย Magnify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Simple tool used for looking at small details in images.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Magnify Magnify
ID dhhmlkhlndebglfokofodmpojiejhahm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/magnify/dhhmlkhlndebglfokofodmpojiejhahm
คำอธิบาย Hover over an image with a magnifying glass
ขนาดไฟล์ 91.29 KB
จำนวนการติดตั้ง 69
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-08-19
วันที่เผยแพร่ 2020-07-20
คะแนน 4.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา reinaldomagalhaes96
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Magnify",
    "version": "1.0",
    "description": "Hover over an image with a magnifying glass",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.js",
                "zoom.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/magnify.png",
            "32": "images\/magnify32.png",
            "48": "images\/magnify48.png",
            "128": "images\/magnify128.png"
        }
    },
    "icons": {
        "16": "images\/magnify.png",
        "32": "images\/magnify32.png",
        "48": "images\/magnify48.png",
        "128": "images\/magnify128.png"
    },
    "manifest_version": 2
}