Ctrl Zoom

Ctrl + touchpad scroll to zoom

Ctrl Zoomคืออะไร?

Ctrl Zoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hempe และคุณลักษณะหลักของมันคือ "Ctrl + touchpad scroll to zoom"

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

screenshot
screenshot
screenshot

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

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

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

                        This extension adds back the Ctrl + scroll zoom for touchpads.

The reason this extension exists, is that ctrl + touchpad scroll zooming was removed from Chrome, and the "Bug" is marked as WontFix (https://bugs.chromium.org/p/chromium/issues/detail?id=878694).                    

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

ชื่อ Ctrl Zoom Ctrl Zoom
ID indpmklmjbcfkbnbhoknlggplddednhp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ctrl-zoom/indpmklmjbcfkbnbhoknlggplddednhp
คำอธิบาย Ctrl + touchpad scroll to zoom
ขนาดไฟล์ 41.45 KB
จำนวนการติดตั้ง 927
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2022-10-25
วันที่เผยแพร่ 2019-11-26
คะแนน 4.90/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Hempe
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/hempe/ctrlZoom
URL หน้านโยบายความเป็นส่วนตัว https://github.com/hempe/ctrlZoom/blob/master/privacy-policy.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ctrl Zoom",
    "version": "1.5",
    "description": "Ctrl + touchpad scroll to zoom",
    "homepage_url": "https:\/\/github.com\/hempe\/ctrlZoom",
    "author": "hempe",
    "short_name": "ctrlZoom",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "resources": [
                "js\/popup.js",
                "js\/ctrlZoom.js"
            ]
        }
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_popup": "options.html",
        "default_title": "ChromiePop"
    }
}