diff options
author | Ajay <[email protected]> | 2024-12-08 20:02:32 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2024-12-08 20:02:32 -0500 |
commit | 15976777ed95699df46251f792d19f07a32ecb30 (patch) | |
tree | cc14f2d0441ad301f0a80f73275d6219ce913198 /src/config.ts | |
parent | 9ad636fdadc5709d7205e81d12ae80334ed08a3a (diff) | |
download | SponsorBlock-15976777ed95699df46251f792d19f07a32ecb30.tar.gz SponsorBlock-15976777ed95699df46251f792d19f07a32ecb30.zip |
Add option to hide autogenerated chapters by YouTube
Diffstat (limited to 'src/config.ts')
-rw-r--r-- | src/config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts index 550f15f4..7b085bfd 100644 --- a/src/config.ts +++ b/src/config.ts @@ -70,6 +70,7 @@ interface SBConfig { showCategoryGuidelines: boolean; showCategoryWithoutPermission: boolean; showSegmentNameInChapterBar: boolean; + showAutogeneratedChapters: boolean; useVirtualTime: boolean; showSegmentFailedToFetchWarning: boolean; allowScrollingToEdit: boolean; @@ -328,6 +329,7 @@ const syncDefaults = { showCategoryGuidelines: true, showCategoryWithoutPermission: false, showSegmentNameInChapterBar: true, + showAutogeneratedChapters: true, useVirtualTime: true, showSegmentFailedToFetchWarning: true, allowScrollingToEdit: true, |