Remove Youtube Hotkeys

Turn Off Youtube Hotkeys

什麼是Remove Youtube Hotkeys?

Remove Youtube Hotkeys是由Brent Waters開發的Chrome擴展程式,該擴展的主要功能是“Turn Off Youtube Hotkeys”。

擴展截圖

screenshot

下載Remove Youtube Hotkeys擴展crx文件

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

擴展使用說明

                        This chrome extension disables youtube hotkeys whenever you are on youtube.com                    

擴展基本資訊

名稱 Remove Youtube Hotkeys Remove Youtube Hotkeys
ID ajabfhplebocnmdcejfleginmigkhjdj
官方網址 https://chromewebstore.google.com/detail/remove-youtube-hotkeys/ajabfhplebocnmdcejfleginmigkhjdj
簡介 Turn Off Youtube Hotkeys
檔案大小 24.26 KB
安裝次數 1,187
目前版本 1.0
更新時間 2019-03-15
上架時間 2019-03-15
評分 3.19/5 共 27 次評分
開發者 Brent Waters
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/bcwaters/TurnOffYoutubeHotkeys
說明頁面URL https://github.com/bcwaters/TurnOffYoutubeHotkeys
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Youtube Hotkeys",
    "version": "1.0",
    "description": "Turn Off Youtube Hotkeys",
    "browser_action": [],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "\/background.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "\/chromeContent.js"
            ]
        }
    ]
}