Zoomba

Customizable zoom increment.

Zoomba là gì?

Zoomba là một tiện ích mở rộng Chrome được phát triển bởi appdevsw, và tính năng chính của nó là "Customizable zoom increment.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Zoomba

Tải xuống các tệp mở rộng Zoomba dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Zoomba Zoomba
ID oifpkclgpipladdnaioaehmmccmljblh
URL Chính Thức https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh
Mô tả Customizable zoom increment.
Kích Thước Tệp 16.34 KB
Số Lần Cài Đặt 1,484
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2019-09-17
Ngày Phát Hành 2019-09-17
Đánh Giá 4.45/5 Tổng số 29 Đánh Giá
Nhà Phát Triển appdevsw
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/appdevsw/zoomba
URL Trang Trợ Giúp https://github.com/appdevsw/zoomba/issues
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}