Zoomify

Load web pages at 100% zoom level for better experience.

Zoomifyคืออะไร?

Zoomify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rishabh Goel และคุณลักษณะหลักของมันคือ "Load web pages at 100% zoom level for better experience."

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

screenshot

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

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

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

                        Load web pages at 100% zoom level for a particular domain. For users of the domain, application would be loaded at 100% zoom level resulting in better customer experience.                    

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

ชื่อ Zoomify Zoomify
ID elhgfighbokpcknobggmegijnpnefldk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/zoomify/elhgfighbokpcknobggmegijnpnefldk
คำอธิบาย Load web pages at 100% zoom level for better experience.
ขนาดไฟล์ 4.41 KB
จำนวนการติดตั้ง 126
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2020-11-25
วันที่เผยแพร่ 2020-10-28
ผู้พัฒนา Rishabh Goel
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zoomify",
    "version": "1.4",
    "description": "Load web pages at 100% zoom level for better experience.",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.hex.a2z.com\/board\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.hex.a2z.com\/board\/*"
            ],
            "js": [
                "prezoomify.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.hex.a2z.com\/board\/*"
            ],
            "js": [
                "postzoomify.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}