Added option to disable notification

This commit is contained in:
Ajay Ramachandran
2020-06-07 11:27:35 -04:00
parent 3f98e2fc73
commit 93316bf463
3 changed files with 16 additions and 6 deletions

View File

@@ -15,6 +15,7 @@ interface SBConfig {
skipCount: number,
sponsorTimesContributed: number,
submissionCountSinceCategories: number, // New count used to show the "Read The Guidelines!!" message
unsubmittedWarning: boolean,
disableSkipping: boolean,
trackViewCount: boolean,
dontShowNotice: boolean,
@@ -132,6 +133,7 @@ var Config: SBObject = {
skipCount: 0,
sponsorTimesContributed: 0,
submissionCountSinceCategories: 0,
unsubmittedWarning: true,
disableSkipping: false,
trackViewCount: true,
dontShowNotice: false,