Improved Speed Slider For YouTube

Add Speed Slider to Youtube Player Settings

< Feedback on Improved Speed Slider For YouTube

Review: Good - script works

§
Posted: 2021-09-13

Fix for wheel


LINE 232.... TO 240

function ytsWheelSlider(event) {
var val = parseFloat(event.target.value) + (event.deltaY > 0 ? -0.1 : 0.1);
val = val < 0.5 ? 0.5 : (val > 4 ? 4 : val);
if (event.target.value !== val) {
event.target.value = val;
ytsUpdateSliderLabel(val);
}
event.preventDefault();
}

Post reply

Sign in to post a reply.