Youtube restore spacebar to scroll

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

Vad är Youtube restore spacebar to scroll?

Youtube restore spacebar to scroll är en Chrome-tillägg utvecklad av bsitdk, och dess huvudfunktion är "A simple extension to restore the default browser behavior of scrolling when pressing the spacebar, on youtube.com".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube restore spacebar to scroll-förlängningens CRX-fil

Ladda ner Youtube restore spacebar to scroll-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Youtube restore spacebar to scroll Youtube restore spacebar to scroll
ID ahjglamdpmmcnabdflfbchopbahahhpk
Officiell webbadress https://chromewebstore.google.com/detail/youtube-restore-spacebar/ahjglamdpmmcnabdflfbchopbahahhpk
Beskrivning A simple extension to restore the default browser behavior of scrolling when pressing the spacebar, on youtube.com
Filstorlek 3.21 KB
Antal Installationer 429
Aktuell Version 1.0.1
Senast Uppdaterad 2019-04-12
Publiceringsdatum 2019-04-12
Betyg 5.00/5 Totalt 12 Betyg
Utvecklare bsitdk
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}