diff options
Diffstat (limited to 'src/config.ts')
-rw-r--r-- | src/config.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts index f6153a5e..f30dde4d 100644 --- a/src/config.ts +++ b/src/config.ts @@ -38,8 +38,10 @@ interface SBConfig { refetchWhenNotFound: boolean, ytInfoPermissionGranted: boolean, allowExpirements: boolean, + showDonationLink: boolean, autoHideInfoButton: boolean, autoSkipOnMusicVideos: boolean, + highlightCategoryUpdate: boolean // What categories should be skipped categorySelections: CategorySelection[], @@ -181,8 +183,10 @@ const Config: SBObject = { refetchWhenNotFound: true, ytInfoPermissionGranted: false, allowExpirements: true, + showDonationLink: true, autoHideInfoButton: true, autoSkipOnMusicVideos: false, + highlightCategoryUpdate: false, // TODO: Remove this once update is done categorySelections: [{ name: "sponsor" as Category, |