Correct Pause

Extension to fix YouTube Spacebar play/pause function

Co to jest Correct Pause?

Correct Pause to rozszerzenie Chrome opracowane przez Aljo, a jego główną funkcją jest „Extension to fix YouTube Spacebar play/pause function”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Correct Pause

Pobierz pliki rozszerzeń Correct Pause 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 extension was made by MrQuackDuck, not me (Aljo). The reason it's under my name is because I bought a chrome developer account, and offered to publish the extension while giving full credit to the original developer. 



After a recent update, YouTube is now having an issue with pressing Spacebar to play/pause the video after Alt+Tab and in cases when you're unfocused from the videoplayer. This browser extension is here to fix this.

Source code: https://github.com/MrQuackDuck/CorrectPause
Check out more stuff on https://justempire.net

Support mail: [email protected]                    

Podstawowe informacje o rozszerzeniu

Nazwa Correct Pause Correct Pause
ID bcbjldkfkgpipahfcghnjcmcjnhmigpg
Oficjalny URL https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg
Opis Extension to fix YouTube Spacebar play/pause function
Rozmiar pliku 8.39 KB
Liczba instalacji 366
Aktualna Wersja 1.6
Ostatnia Aktualizacja 2024-01-26
Data Publikacji 2023-11-16
Ocena 4.60/5 Łącznie 20 Oceny
Deweloper Aljo
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://justempire.net
Adres URL Strony Pomocy https://github.com/MrQuackDuck/CorrectPause
Adres URL Strony Polityki Prywatności https://justempire.net/en/service/14/correct-youtube-pause
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Correct Pause",
    "version": "1.6",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/youtube.com\/*"
    ],
    "description": "Extension to fix YouTube Spacebar play\/pause function",
    "icons": {
        "32": "icons\/correctPause-32.png",
        "48": "icons\/correctPause-48.png",
        "64": "icons\/correctPause-64.png",
        "128": "icons\/correctPause-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "correctPause.js"
            ]
        }
    ]
}