YouTube - Pause with Space Properly

Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.

Was ist YouTube - Pause with Space Properly?

YouTube - Pause with Space Properly ist eine Chrome-Erweiterung, die von James Forsyth entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.".

YouTube - Pause with Space Properly-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube - Pause with Space Properly-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

                        Fixes the common issue with pressing space to pause YouTube  videos. This extension refocuses the video when pressing space (unless you're trying to type), preventing the default behaviour that shoots halfway down the webpage.

Simple fix for a simple problem. Don't know why YouTube won't fix things themselves.                    

Grundlegende Informationen zur Erweiterung

Name YouTube - Pause with Space Properly YouTube - Pause with Space Properly
ID cdidekkahbpdfkaegopcnpkobibblmof
Offizielle URL https://chrome.google.com/webstore/detail/youtube-pause-with-space/cdidekkahbpdfkaegopcnpkobibblmof
Beschreibung Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.
Dateigröße 19.83 KB
Installationsanzahl 151
Aktuelle Version 1.0.0
Letztes Update 2017-12-13
Veröffentlichungsdatum 2017-12-13
Bewertung 3.80/5 Insgesamt 10 Bewertungen
Entwickler James Forsyth
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube - Pause with Space Properly",
    "description": "Allows you to pause\/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "space.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "space-128.png",
        "38": "space-38.png",
        "19": "space-19.png"
    }
}