Zoomba

Customizable zoom increment.

What is Zoomba?

Zoomba is a Chrome extension developed by appdevsw, and its main feature is "Customizable zoom increment.".

Extension Screenshots

screenshot

Download Zoomba Extension CRX File

Download Zoomba extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Zoomba Zoomba
ID oifpkclgpipladdnaioaehmmccmljblh
Official URL https://chromewebstore.google.com/detail/zoomba/oifpkclgpipladdnaioaehmmccmljblh
Description Customizable zoom increment.
File Size 16.34 KB
Installation Count 1,484
Current Version 1.2.1
Last Updated 2019-09-17
Publish Date 2019-09-17
Rating 4.45/5 Total 29 Ratings
Developer appdevsw
Payment Type free
Extension Website https://github.com/appdevsw/zoomba
Help Page URL https://github.com/appdevsw/zoomba/issues
Supported Languages 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:\/\/*\/*"
    ]
}