Correct Pause

Extension to fix YouTube Spacebar play/pause function

什麼是Correct Pause?

Correct Pause是由Aljo開發的Chrome擴展程式,該擴展的主要功能是“Extension to fix YouTube Spacebar play/pause function”。

擴展截圖

screenshot
screenshot

下載Correct Pause擴展crx文件

下載Correct Pause擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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]                    

擴展基本資訊

名稱 Correct Pause Correct Pause
ID bcbjldkfkgpipahfcghnjcmcjnhmigpg
官方網址 https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg
簡介 Extension to fix YouTube Spacebar play/pause function
檔案大小 8.39 KB
安裝次數 366
目前版本 1.6
更新時間 2024-01-26
上架時間 2023-11-16
評分 4.60/5 共 20 次評分
開發者 Aljo
電子郵箱 [email protected]
付費類型 free
擴展官網 https://justempire.net
說明頁面URL https://github.com/MrQuackDuck/CorrectPause
隱私政策頁面URL https://justempire.net/en/service/14/correct-youtube-pause
支援的語言 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"
            ]
        }
    ]
}