Chrome Wheel

Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.

Что такое Chrome Wheel?

Chrome Wheel - это расширение Chrome, разработанное http://samskivert.com, и его основная функция - "Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.".

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

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

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

                        Back in the good old days, ctrl-mousewheel or alt-mousewheel scrolled the page in large (full page) increments. That was actually useful. Then someone had the genius idea of making that scale the page up or down. Not so useful in my humble opinion, so this plugin restores the "scroll faster" behavior.                    

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

Название Chrome Wheel Chrome Wheel
ID ceooplgmfmmjjbmnmhnpnmkikmmcikbn
Официальный URL https://chrome.google.com/webstore/detail/chrome-wheel/ceooplgmfmmjjbmnmhnpnmkikmmcikbn
Описание Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.
Размер файла 3.52 KB
Количество установок 19
Текущая Версия 1.0.1
Последнее Обновление 2016-12-02
Дата публикации 2016-12-02
Рейтинг 3.00/5 Всего 3 оценок
Разработчик http://samskivert.com
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Wheel",
    "version": "1.0.1",
    "description": "Makes alt\/shift\/ctrl-scrollwheel scroll in large increments instead of default behavior.",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "chromewheel.js"
            ],
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}