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:\/\/*\/*"
    ]
}