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.

Hvad er YouTube - Pause with Space Properly?

YouTube - Pause with Space Properly er en Chrome-udvidelse udviklet af James Forsyth, og dens hovedfunktion er "Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.".

Download YouTube - Pause with Space Properly-udvidelses-CRX-fil

Download YouTube - Pause with Space Properly-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn YouTube - Pause with Space Properly YouTube - Pause with Space Properly
ID cdidekkahbpdfkaegopcnpkobibblmof
Officiel URL https://chrome.google.com/webstore/detail/youtube-pause-with-space/cdidekkahbpdfkaegopcnpkobibblmof
Beskrivelse Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.
Filstørrelse 19.83 KB
Antal Installationer 151
Nuværende Version 1.0.0
Senest Opdateret 2017-12-13
Udgivelsesdato 2017-12-13
Bedømmelse 3.80/5 Samlet 10 Bedømmelser
Udvikler James Forsyth
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}