Youtube restore spacebar to scroll

A simple extension to restore the default browser behavior of scrolling when pressing the spacebar, on youtube.com

Что такое Youtube restore spacebar to scroll?

Youtube restore spacebar to scroll - это расширение Chrome, разработанное bsitdk, и его основная функция - "A simple extension to restore the default browser behavior of scrolling when pressing the spacebar, on youtube.com".

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

screenshot

Скачать файл CRX расширения Youtube restore spacebar to scroll

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

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

                        Youtube recently changed the default browser behavior of scrolling the page, when pressing the spacebar, to instead pause the video.
This extension removes the "Spacebar to pause" functionality and restores the scrolling.                    

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

Название Youtube restore spacebar to scroll Youtube restore spacebar to scroll
ID ahjglamdpmmcnabdflfbchopbahahhpk
Официальный URL https://chromewebstore.google.com/detail/youtube-restore-spacebar/ahjglamdpmmcnabdflfbchopbahahhpk
Описание A simple extension to restore the default browser behavior of scrolling when pressing the spacebar, on youtube.com
Размер файла 3.21 KB
Количество установок 429
Текущая Версия 1.0.1
Последнее Обновление 2019-04-12
Дата публикации 2019-04-12
Рейтинг 5.00/5 Всего 12 оценок
Разработчик bsitdk
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube restore spacebar to scroll",
    "description": "A simple extension to restore the default browser behavior of scrolling when pressing the spacebar, on youtube.com",
    "version": "1.0.1",
    "manifest_version": 2,
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube.js"
            ]
        }
    ]
}