Correct Pause

Extension to fix YouTube Spacebar play/pause function

Co je Correct Pause?

Correct Pause je rozšíření Chrome vyvinuté Aljo, a jeho hlavní funkcí je „Extension to fix YouTube Spacebar play/pause function“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Correct Pause

Stáhněte si soubory rozšíření Correct Pause ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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]                    

Základní Informace o Rozšíření

Název Correct Pause Correct Pause
ID bcbjldkfkgpipahfcghnjcmcjnhmigpg
Oficiální URL https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg
Popis Extension to fix YouTube Spacebar play/pause function
Velikost souboru 8.39 KB
Počet instalací 366
Aktuální Verze 1.6
Poslední Aktualizace 2024-01-26
Datum Vydání 2023-11-16
Hodnocení 4.60/5 Celkem 20 Hodnocení
Vývojář Aljo
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://justempire.net
URL Stránky Nápovědy https://github.com/MrQuackDuck/CorrectPause
URL Stránky Zásad Ochrany Soukromí https://justempire.net/en/service/14/correct-youtube-pause
Podporované Jazyky 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"
            ]
        }
    ]
}