Correct Pause

Extension to fix YouTube Spacebar play/pause function

Apa itu Correct Pause?

Correct Pause adalah ekstensi Chrome yang dikembangkan oleh Aljo, dan fitur utamanya adalah "Extension to fix YouTube Spacebar play/pause function".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Correct Pause

Unduh file ekstensi Correct Pause dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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]                    

Informasi Dasar Ekstensi

Nama Correct Pause Correct Pause
ID bcbjldkfkgpipahfcghnjcmcjnhmigpg
URL Resmi https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg
Deskripsi Extension to fix YouTube Spacebar play/pause function
Ukuran File 8.39 KB
Jumlah Instalasi 366
Versi Saat Ini 1.6
Terakhir Diperbarui 2024-01-26
Tanggal Publikasi 2023-11-16
Penilaian 4.60/5 Total 20 Penilaian
Pengembang Aljo
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://justempire.net
URL Halaman Bantuan https://github.com/MrQuackDuck/CorrectPause
URL Halaman Kebijakan Privasi https://justempire.net/en/service/14/correct-youtube-pause
Bahasa yang Didukung 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"
            ]
        }
    ]
}