diff options
Diffstat (limited to 'src/content.ts')
-rw-r--r-- | src/content.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/content.ts b/src/content.ts index 47f27f68..681ef10c 100644 --- a/src/content.ts +++ b/src/content.ts @@ -1222,7 +1222,12 @@ function skipToTime({v, skipTime, skippingSegments, openNotice, forceAutoSkip, u break; } } - + } + + if (autoSkip && Config.config.audioNotificationOnSkip) { + const beep = new Audio(chrome.runtime.getURL("icons/beep.ogg")); + beep.volume = video.volume * 0.1; + beep.play(); } if (!autoSkip |