mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-21 18:08:46 -04:00
remove speed change on rewind
Confuses too many people, can be accomplished with/via other shortcuts. Closes #24.
This commit is contained in:
@@ -100,7 +100,6 @@ chrome.extension.sendMessage({}, function(response) {
|
||||
videoTags.forEach(function(v) {
|
||||
if (!v.paused && !v.classList.contains('vc-cancelled')) {
|
||||
if (action === 'rewind') {
|
||||
v.playbackRate = Math.max(v.playbackRate - speedStep, 0.00);
|
||||
v.currentTime -= rewindTime;
|
||||
} else if (action === 'faster') {
|
||||
v.playbackRate += speedStep
|
||||
|
Reference in New Issue
Block a user