Youtube restore spacebar to scroll

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

Co to jest Youtube restore spacebar to scroll?

Youtube restore spacebar to scroll to rozszerzenie Chrome opracowane przez bsitdk, a jego główną funkcją jest „A simple extension to restore the default browser behavior of scrolling when pressing the spacebar, on youtube.com”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube restore spacebar to scroll

Pobierz pliki rozszerzeń Youtube restore spacebar to scroll w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube restore spacebar to scroll Youtube restore spacebar to scroll
ID ahjglamdpmmcnabdflfbchopbahahhpk
Oficjalny URL https://chromewebstore.google.com/detail/youtube-restore-spacebar/ahjglamdpmmcnabdflfbchopbahahhpk
Opis A simple extension to restore the default browser behavior of scrolling when pressing the spacebar, on youtube.com
Rozmiar pliku 3.21 KB
Liczba instalacji 429
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2019-04-12
Data Publikacji 2019-04-12
Ocena 5.00/5 Łącznie 12 Oceny
Deweloper bsitdk
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}