diff --git a/src/lib/handleKeyEvent.ts b/src/lib/handleKeyEvent.ts index abc9ac3..575a38f 100644 --- a/src/lib/handleKeyEvent.ts +++ b/src/lib/handleKeyEvent.ts @@ -45,11 +45,13 @@ export function handleKeyEvent( switch (command) { case "seekBackward": - ytShorts.currentTime -= options.seekAmount as number; + if (e.shiftKey) ytShorts.currentTime -= 1; + else ytShorts.currentTime -= options.seekAmount as number; break; case "seekForward": - ytShorts.currentTime += options.seekAmount as number; + if (e.shiftKey) ytShorts.currentTime += 1; + else ytShorts.currentTime += options.seekAmount as number; break; case "decreaseSpeed":