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.

Co to jest YouTube - Pause with Space Properly?

YouTube - Pause with Space Properly to rozszerzenie Chrome opracowane przez James Forsyth, a jego główną funkcją jest „Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.”.

Pobierz plik CRX rozszerzenia YouTube - Pause with Space Properly

Pobierz pliki rozszerzeń YouTube - Pause with Space Properly 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube - Pause with Space Properly YouTube - Pause with Space Properly
ID cdidekkahbpdfkaegopcnpkobibblmof
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-pause-with-space/cdidekkahbpdfkaegopcnpkobibblmof
Opis Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.
Rozmiar pliku 19.83 KB
Liczba instalacji 151
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2017-12-13
Data Publikacji 2017-12-13
Ocena 3.80/5 Łącznie 10 Oceny
Deweloper James Forsyth
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}