Zoomba

Customizable zoom increment.

Zoombaคืออะไร?

Zoomba เป็นส่วนขยายของ Chrome ที่พัฒนาโดย appdevsw และคุณลักษณะหลักของมันคือ "Customizable zoom increment."

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

screenshot

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

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

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

                        Zoomba is an extension, which allows you to set a zoom increment and assign it to different keys or mouse wheel actions.
You can use several keys and wheel combinations to set different zoom steps.                    

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

ชื่อ Zoomba Zoomba
ID oifpkclgpipladdnaioaehmmccmljblh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh
คำอธิบาย Customizable zoom increment.
ขนาดไฟล์ 16.34 KB
จำนวนการติดตั้ง 1,484
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2019-09-17
วันที่เผยแพร่ 2019-09-17
คะแนน 4.45/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา appdevsw
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/appdevsw/zoomba
URL หน้าช่วยเหลือ https://github.com/appdevsw/zoomba/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zoomba",
    "short_name": "Zoomba",
    "description": "Customizable zoom increment.",
    "version": "1.2.1",
    "author": "[email protected]",
    "browser_action": {
        "default_title": "Zoomba",
        "default_popup": "popup.html"
    },
    "options_page": "popup.html",
    "background": {
        "persistent": false,
        "scripts": [
            "common.js",
            "settings.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "common.js",
                "keyboard.js",
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "128": "loupe128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self';",
    "permissions": [
        "storage",
        "tabs",
        "management",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}