Scroll Speed

Change the scroll speed

Что такое Scroll Speed?

Scroll Speed - это расширение Chrome, разработанное Bert Hekman, и его основная функция - "Change the scroll speed".

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

screenshot

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

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

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

                        Change the scrolling speed of the mouse wheel                    

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

Название Scroll Speed Scroll Speed
ID mfmhdfkinffhnfhaalnabffcfjgcmdhl
Официальный URL https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl
Описание Change the scroll speed
Размер файла 10.95 KB
Количество установок 3,683
Текущая Версия 0.1
Последнее Обновление 2020-04-27
Дата публикации 2020-04-23
Рейтинг 4.28/5 Всего 29 оценок
Разработчик Bert Hekman
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/DemonTPx/chrome-scroll-speed
URL страницы помощи https://github.com/DemonTPx/chrome-scroll-speed/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Speed",
    "version": "0.1",
    "description": "Change the scroll speed",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "exclude_globs": [
                "*.pdf"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}