Add per-chapter auto skip intro/outro for web player

Per-book skip settings stored in browser localStorage. Checks each
chapter's intro/outro zone during playback and automatically seeks
past them, matching the behavior of the Android app implementation.
This commit is contained in:
Lunatic 2026-02-27 14:33:19 +08:00
parent 1d0b7e383a
commit d157388680
3 changed files with 159 additions and 2 deletions

View file

@ -18,7 +18,8 @@ export const state = () => ({
authorSortBy: 'name',
authorSortDesc: false,
jumpForwardAmount: 10,
jumpBackwardAmount: 10
jumpBackwardAmount: 10,
bookSkipSettings: {} // 书籍跳过配置 { [libraryItemId]: { skipIntro, introDuration, skipOutro, outroDuration } }
}
})