Allow not counting time in private tabs

Closes https://github.com/ajayyy/SponsorBlock/issues/703
This commit is contained in:
Ajay Ramachandran
2021-06-11 18:17:40 -04:00
parent 29b29e3f6e
commit 8cb212a77b
5 changed files with 29 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ interface SBConfig {
showTimeWithSkips: boolean,
disableSkipping: boolean,
trackViewCount: boolean,
trackViewCountInPrivate: boolean,
dontShowNotice: boolean,
hideVideoPlayerControls: boolean,
hideInfoButtonPlayerControls: boolean,
@@ -154,6 +155,7 @@ const Config: SBObject = {
showTimeWithSkips: true,
disableSkipping: false,
trackViewCount: true,
trackViewCountInPrivate: true,
dontShowNotice: false,
hideVideoPlayerControls: false,
hideInfoButtonPlayerControls: false,