Wheeltab

Switch tabs using your mouse wheel.

Что такое Wheeltab?

Wheeltab - это расширение Chrome, разработанное Mat, и его основная функция - "Switch tabs using your mouse wheel.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Wheeltab

Скачайте файлы расширений Wheeltab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Wheeltab allows you to navigate through your open tabs using your mouse wheel.

Press and hold the left button of your mouse, without moving your mouse. Then, use your mouse wheel to scroll through the list of open tabs in the menu that will appear. Release the left button to jump to the highlighted tab. Use the "Escape" key to close the menu and stay on the current tab.                    

Основная информация о расширении

Название Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
Официальный URL https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Описание Switch tabs using your mouse wheel.
Размер файла 11.09 KB
Количество установок 253
Текущая Версия 0.0.4
Последнее Обновление 2022-04-18
Дата публикации 2016-05-27
Рейтинг 1.75/5 Всего 8 оценок
Разработчик Mat
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/matco/wheeltab
URL страницы помощи https://github.com/matco/wheeltab
Поддерживаемые языки en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wheeltab",
    "version": "0.0.4",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "incognito": "spanning",
    "author": "Matthieu Corageoud",
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "background.js"
    }
}