Zoomba

Customizable zoom increment.

Apa itu Zoomba?

Zoomba adalah ekstensi Chrome yang dikembangkan oleh appdevsw, dan fitur utamanya adalah "Customizable zoom increment.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Zoomba

Unduh file ekstensi Zoomba dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Zoomba Zoomba
ID oifpkclgpipladdnaioaehmmccmljblh
URL Resmi https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh
Deskripsi Customizable zoom increment.
Ukuran File 16.34 KB
Jumlah Instalasi 1,484
Versi Saat Ini 1.2.1
Terakhir Diperbarui 2019-09-17
Tanggal Publikasi 2019-09-17
Penilaian 4.45/5 Total 29 Penilaian
Pengembang appdevsw
Tipe Pembayaran free
Situs Ekstensi https://github.com/appdevsw/zoomba
URL Halaman Bantuan https://github.com/appdevsw/zoomba/issues
Bahasa yang Didukung 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:\/\/*\/*"
    ]
}