Zoomba

Customizable zoom increment.

Cos'è Zoomba?

Zoomba è un'estensione di Chrome sviluppata da appdevsw, e la sua funzione principale è "Customizable zoom increment.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Zoomba

Scarica i file di estensione Zoomba in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Zoomba Zoomba
ID oifpkclgpipladdnaioaehmmccmljblh
URL Ufficiale https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh
Descrizione Customizable zoom increment.
Dimensione del File 16.34 KB
Conteggio Installazioni 1,484
Versione Corrente 1.2.1
Ultimo Aggiornamento 2019-09-17
Data di Pubblicazione 2019-09-17
Valutazione 4.45/5 Totale 29 Valutazioni
Sviluppatore appdevsw
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/appdevsw/zoomba
URL della Pagina di Aiuto https://github.com/appdevsw/zoomba/issues
Lingue Supportate 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:\/\/*\/*"
    ]
}