YouTube Spacebar pausing

Pause videos on page load with the space bar

Co to jest YouTube Spacebar pausing?

YouTube Spacebar pausing to rozszerzenie Chrome opracowane przez D3.io, a jego główną funkcją jest „Pause videos on page load with the space bar”.

Pobierz plik CRX rozszerzenia YouTube Spacebar pausing

Pobierz pliki rozszerzeń YouTube Spacebar pausing 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

                        This enables you to use the spacebar to pause YouTube videos as soon as the page has loaded. YouTube usually requires that you first manually pause the video by clicking the pause button before the spacebar trick works. This will enable you to use the spacebar to pause a YouTube video whenever you feel like!


CHANGELOG
---------

1.3 
- Fixed form focus issue, preventing you from using spaces in the search bar

1.2
- Fixed issue with pausing when writing a comment

1.1
- Fixed YouTube fullscreen issue

1.0
- Released!                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Spacebar pausing YouTube Spacebar pausing
ID bkpindoeklkmcchcidehelnihghppcdg
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-spacebar-pausing/bkpindoeklkmcchcidehelnihghppcdg
Opis Pause videos on page load with the space bar
Rozmiar pliku 23.57 KB
Liczba instalacji 28
Aktualna Wersja 1.3.0
Ostatnia Aktualizacja 2016-07-05
Data Publikacji 2016-07-05
Ocena 3.38/5 Łącznie 13 Oceny
Deweloper D3.io
Typ Płatności free
Strona Rozszerzenia https://www.d3.io
Adres URL Strony Pomocy https://www.d3.io/contact
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Spacebar pausing",
    "version": "1.3.0",
    "description": "Pause videos on page load with the space bar",
    "icons": {
        "48": "Icons\/Icon48.png",
        "128": "Icons\/Icon128.png"
    },
    "author": "D3T Digital",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "short_name": "YouTube Spacebar pausing",
    "web_accessible_resources": [
        "Icons\/*"
    ]
}