YouTube Space Bar

Actually pause YouTube videos with the space bar

Was ist YouTube Space Bar?

YouTube Space Bar ist eine Chrome-Erweiterung, die von djmartin5454 entwickelt wurde, und ihr Hauptmerkmal ist "Actually pause YouTube videos with the space bar".

YouTube Space Bar-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Space Bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        No one has ever wanted to scroll down on YouTube using the space bar.
This fixes that.

There are a few extensions that claim to do this, but this one actually works.

Also, spaces typed in the comment box, or in the search bar do not pause the video as they do in some other extensions.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Space Bar YouTube Space Bar
ID jeelddbhfpblnfdakpnniechhhpdobhb
Offizielle URL https://chromewebstore.google.com/detail/youtube-space-bar/jeelddbhfpblnfdakpnniechhhpdobhb
Beschreibung Actually pause YouTube videos with the space bar
Dateigröße 6.04 KB
Installationsanzahl 121
Aktuelle Version 1.2
Letztes Update 2016-10-03
Veröffentlichungsdatum 2016-10-03
Bewertung 3.33/5 Insgesamt 15 Bewertungen
Entwickler djmartin5454
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Space Bar",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Actually pause YouTube videos with the space bar",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "icon.html"
    },
    "web_accessible_resources": [
        "inject.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ]
}