Quick Zoom

Enables browser zoom with Cmd + mouse wheel

Quick Zoomคืออะไร?

Quick Zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tom Scott และคุณลักษณะหลักของมันคือ "Enables browser zoom with Cmd + mouse wheel"

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

screenshot
screenshot
screenshot

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

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

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

                        Quick Zoom allows you to zoom into the page using your mouse wheel and holding down the Cmd key.

Similar to the Ctrl + mouse wheel on Windows, Quick Zoom brings this functionality to macOS.

Usage: 
macOS
Hold down your Cmd key and scroll with your mouse to zoom in and out of the page.

Windows
Hold down the Windows key and scroll with your mouse to zoom in and out of the page. The browser also allows you to zoom by holding Ctrl and scrolling with your mouse wheel without this extension.

For more information see the website.                    

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

ชื่อ Quick Zoom Quick Zoom
ID lgallnmjflibiofogpfalipjikgdaipb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/quick-zoom/lgallnmjflibiofogpfalipjikgdaipb
คำอธิบาย Enables browser zoom with Cmd + mouse wheel
ขนาดไฟล์ 15.84 KB
จำนวนการติดตั้ง 2,339
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2020-12-24
วันที่เผยแพร่ 2020-11-01
คะแนน 4.05/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา Tom Scott
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Silver292/quick-zoom
URL หน้าช่วยเหลือ https://github.com/Silver292/quick-zoom/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Zoom",
    "version": "1.0.1",
    "description": "Enables browser zoom with Cmd + mouse wheel",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": "false"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [],
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "manifest_version": 2
}