MouseZoom

Zoom in and out with the right mouse button and left click or wheel.

MouseZoomคืออะไร?

MouseZoom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.meyerk.com และคุณลักษณะหลักของมันคือ "Zoom in and out with the right mouse button and left click or wheel."

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

screenshot

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

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

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

                        This is an extension for zooming with the right mouse button and the scroll wheel. Right mouse button + left mouse button snap-zoom functionality is also available.

*** FINALLY *** Chrome offers an official Zoom-API and starting with version 0.2.0, MouseZoom for Chrome is using it. Zooming should now be almost as enjoyable as on Firefox.

In case you're wondering: The "OSD", present in former versions of MouseZoom, has been removed. Instead, Chrome shows an "info bubble" that displays the current zoom level while zooming. Also, Chrome does not support changing the buit-in zoom-levels, so the option for changing those had to be removed as well.                    

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

ชื่อ MouseZoom MouseZoom
ID amdjnhbhdjpkbnjkmnpooebpfcgejahe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mousezoom/amdjnhbhdjpkbnjkmnpooebpfcgejahe
คำอธิบาย Zoom in and out with the right mouse button and left click or wheel.
ขนาดไฟล์ 58.15 KB
จำนวนการติดตั้ง 1,892
เวอร์ชันปัจจุบัน 0.2.1
อัปเดตครั้งล่าสุด 2015-08-30
วันที่เผยแพร่ 2015-08-30
คะแนน 3.68/5 รวมทั้งหมด 57 คะแนน
ผู้พัฒนา https://www.meyerk.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MouseZoom",
    "version": "0.2.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Zoom in and out with the right mouse button and left click or wheel.",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_title": "MouseZoom",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "options.model.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}