Remove Youtube Hotkeys

Turn Off Youtube Hotkeys

What is Remove Youtube Hotkeys?

Remove Youtube Hotkeys is a Chrome extension developed by Brent Waters, and its main feature is "Turn Off Youtube Hotkeys".

Extension Screenshots

screenshot

Download Remove Youtube Hotkeys Extension CRX File

Download Remove Youtube Hotkeys extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Remove Youtube Hotkeys Remove Youtube Hotkeys
ID ajabfhplebocnmdcejfleginmigkhjdj
Official URL https://chromewebstore.google.com/detail/remove-youtube-hotkeys/ajabfhplebocnmdcejfleginmigkhjdj
Description Turn Off Youtube Hotkeys
File Size 24.26 KB
Installation Count 1,187
Current Version 1.0
Last Updated 2019-03-15
Publish Date 2019-03-15
Rating 3.19/5 Total 27 Ratings
Developer Brent Waters
Email [email protected]
Payment Type free
Extension Website https://github.com/bcwaters/TurnOffYoutubeHotkeys
Help Page URL https://github.com/bcwaters/TurnOffYoutubeHotkeys
Supported Languages 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"
            ]
        }
    ]
}