Inspect and view changes in Disable YouTube Number Key Shortcuts (Except 0) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Disable YouTube Seek by Number (Except 0)",
"version": "1.2",
"description": "Disables the number keys (1-9) shortcuts on YouTube to seek time in video by percentage. This version leaves 0 enabled to go to the start of the video.",
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*",
"*://*.youtube-nocookie.com/*"
],
"all_frames": true,
"js": [
"disable-yt-numberkeys-except-0.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{654264cc-cc77-4dcd-8b0c-e262eae634e4}"
}
}
}