mirror of
https://github.com/SoPat712/videospeed.git
synced 2025-08-21 18:08:46 -04:00
Rewind goes back 10s and slows down speed by 10 points instead of 20
This commit is contained in:
@@ -85,7 +85,7 @@ chrome.extension.sendMessage({}, function(response) {
|
||||
videoTags.forEach(function(v) {
|
||||
if (!v.paused && !v.classList.contains("vc-cancelled")) {
|
||||
if (action === 'rewind') {
|
||||
v.playbackRate -= 0.20;
|
||||
v.playbackRate -= 0.10;
|
||||
v.currentTime -= 10;
|
||||
} else if (action === 'faster') { v.playbackRate += 0.10 }
|
||||
else if (action === 'slower') { v.playbackRate -= 0.10 }
|
||||
|
Reference in New Issue
Block a user