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
公式URL 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
Eメール [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"
            ]
        }
    ]
}