2020-02-09 03:30:57 +01:00
|
|
|
import * as CompileConfig from "../config.json";
|
2021-11-30 22:44:42 +01:00
|
|
|
import * as invidiousList from "../ci/invidiouslist.json";
|
2023-05-08 23:02:49 +02:00
|
|
|
import { Category, CategorySelection, CategorySkipOption, NoticeVisbilityMode, PreviewBarOption, SponsorTime, VideoID, SponsorHideType } from "./types";
|
2023-08-02 04:45:01 +02:00
|
|
|
import { Keybind, ProtoConfig, keybindEquals } from "../maze-utils/src/config";
|
|
|
|
import { HashedValue } from "../maze-utils/src/hash";
|
2020-04-27 00:07:10 +02:00
|
|
|
|
2022-08-14 06:14:59 +02:00
|
|
|
export interface Permission {
|
|
|
|
canSubmit: boolean;
|
|
|
|
}
|
|
|
|
|
2020-02-03 20:11:52 +01:00
|
|
|
interface SBConfig {
|
2022-10-08 02:51:58 +02:00
|
|
|
userID: string;
|
|
|
|
isVip: boolean;
|
|
|
|
permissions: Record<Category, Permission>;
|
|
|
|
defaultCategory: Category;
|
|
|
|
renderSegmentsAsChapters: boolean;
|
|
|
|
whitelistedChannels: string[];
|
|
|
|
forceChannelCheck: boolean;
|
|
|
|
minutesSaved: number;
|
|
|
|
skipCount: number;
|
|
|
|
sponsorTimesContributed: number;
|
|
|
|
submissionCountSinceCategories: number; // New count used to show the "Read The Guidelines!!" message
|
|
|
|
showTimeWithSkips: boolean;
|
|
|
|
disableSkipping: boolean;
|
|
|
|
muteSegments: boolean;
|
|
|
|
fullVideoSegments: boolean;
|
2023-03-18 07:05:14 +01:00
|
|
|
fullVideoLabelsOnThumbnails: boolean;
|
2022-10-08 02:51:58 +02:00
|
|
|
manualSkipOnFullVideo: boolean;
|
|
|
|
trackViewCount: boolean;
|
|
|
|
trackViewCountInPrivate: boolean;
|
|
|
|
trackDownvotes: boolean;
|
2024-03-19 00:45:35 +01:00
|
|
|
trackDownvotesInPrivate: boolean;
|
2022-10-08 02:51:58 +02:00
|
|
|
dontShowNotice: boolean;
|
|
|
|
noticeVisibilityMode: NoticeVisbilityMode;
|
|
|
|
hideVideoPlayerControls: boolean;
|
|
|
|
hideInfoButtonPlayerControls: boolean;
|
|
|
|
hideDeleteButtonPlayerControls: boolean;
|
|
|
|
hideUploadButtonPlayerControls: boolean;
|
|
|
|
hideSkipButtonPlayerControls: boolean;
|
|
|
|
hideDiscordLaunches: number;
|
|
|
|
hideDiscordLink: boolean;
|
|
|
|
invidiousInstances: string[];
|
|
|
|
supportInvidious: boolean;
|
|
|
|
serverAddress: string;
|
|
|
|
minDuration: number;
|
|
|
|
skipNoticeDuration: number;
|
|
|
|
audioNotificationOnSkip: boolean;
|
|
|
|
checkForUnlistedVideos: boolean;
|
|
|
|
testingServer: boolean;
|
|
|
|
refetchWhenNotFound: boolean;
|
|
|
|
ytInfoPermissionGranted: boolean;
|
|
|
|
allowExpirements: boolean;
|
|
|
|
showDonationLink: boolean;
|
|
|
|
showPopupDonationCount: number;
|
|
|
|
showUpsells: boolean;
|
2023-06-22 01:55:17 +02:00
|
|
|
showNewFeaturePopups: boolean;
|
2022-10-08 02:51:58 +02:00
|
|
|
donateClicked: number;
|
|
|
|
autoHideInfoButton: boolean;
|
|
|
|
autoSkipOnMusicVideos: boolean;
|
2021-10-14 05:14:51 +02:00
|
|
|
colorPalette: {
|
2022-10-08 02:51:58 +02:00
|
|
|
red: string;
|
|
|
|
white: string;
|
|
|
|
locked: string;
|
|
|
|
};
|
|
|
|
scrollToEditTimeUpdate: boolean;
|
|
|
|
categoryPillUpdate: boolean;
|
|
|
|
showChapterInfoMessage: boolean;
|
|
|
|
darkMode: boolean;
|
|
|
|
showCategoryGuidelines: boolean;
|
|
|
|
showCategoryWithoutPermission: boolean;
|
|
|
|
showSegmentNameInChapterBar: boolean;
|
2022-10-13 05:48:20 +02:00
|
|
|
useVirtualTime: boolean;
|
2022-10-31 01:38:48 +01:00
|
|
|
showSegmentFailedToFetchWarning: boolean;
|
2022-11-06 18:48:42 +01:00
|
|
|
allowScrollingToEdit: boolean;
|
2023-06-22 05:07:09 +02:00
|
|
|
deArrowInstalled: boolean;
|
|
|
|
showDeArrowPromotion: boolean;
|
2023-11-08 02:49:25 +01:00
|
|
|
showDeArrowInSettings: boolean;
|
2023-11-08 22:07:59 +01:00
|
|
|
shownDeArrowPromotion: boolean;
|
2023-07-20 02:30:16 +02:00
|
|
|
showZoomToFillError2: boolean;
|
2023-11-08 03:05:39 +01:00
|
|
|
cleanPopup: boolean;
|
2020-04-03 04:13:36 +02:00
|
|
|
|
2022-02-06 04:23:11 +01:00
|
|
|
// Used to cache calculated text color info
|
|
|
|
categoryPillColors: {
|
|
|
|
[key in Category]: {
|
2022-10-08 02:51:58 +02:00
|
|
|
lastColor: string;
|
|
|
|
textColor: string;
|
2022-02-06 04:23:11 +01:00
|
|
|
}
|
2022-10-08 02:51:58 +02:00
|
|
|
};
|
2022-02-06 04:23:11 +01:00
|
|
|
|
2022-10-08 02:51:58 +02:00
|
|
|
skipKeybind: Keybind;
|
2023-09-23 21:40:11 +02:00
|
|
|
skipToHighlightKeybind: Keybind;
|
2022-10-08 02:51:58 +02:00
|
|
|
startSponsorKeybind: Keybind;
|
|
|
|
submitKeybind: Keybind;
|
2023-12-22 17:41:35 +01:00
|
|
|
actuallySubmitKeybind: Keybind;
|
2024-01-15 00:34:23 +01:00
|
|
|
previewKeybind: Keybind;
|
2022-10-08 02:51:58 +02:00
|
|
|
nextChapterKeybind: Keybind;
|
|
|
|
previousChapterKeybind: Keybind;
|
2023-12-22 17:48:21 +01:00
|
|
|
closeSkipNoticeKeybind: Keybind;
|
2020-04-03 04:13:36 +02:00
|
|
|
|
|
|
|
// What categories should be skipped
|
2022-10-08 02:51:58 +02:00
|
|
|
categorySelections: CategorySelection[];
|
2020-06-04 02:20:02 +02:00
|
|
|
|
2022-09-01 21:15:30 +02:00
|
|
|
payments: {
|
2022-10-08 02:51:58 +02:00
|
|
|
licenseKey: string;
|
|
|
|
lastCheck: number;
|
|
|
|
lastFreeCheck: number;
|
|
|
|
freeAccess: boolean;
|
|
|
|
chaptersAllowed: boolean;
|
|
|
|
};
|
2022-09-01 21:15:30 +02:00
|
|
|
|
2020-06-04 02:20:02 +02:00
|
|
|
// Preview bar
|
|
|
|
barTypes: {
|
2022-10-08 02:51:58 +02:00
|
|
|
"preview-chooseACategory": PreviewBarOption;
|
|
|
|
"sponsor": PreviewBarOption;
|
|
|
|
"preview-sponsor": PreviewBarOption;
|
|
|
|
"selfpromo": PreviewBarOption;
|
|
|
|
"preview-selfpromo": PreviewBarOption;
|
|
|
|
"exclusive_access": PreviewBarOption;
|
|
|
|
"interaction": PreviewBarOption;
|
|
|
|
"preview-interaction": PreviewBarOption;
|
|
|
|
"intro": PreviewBarOption;
|
|
|
|
"preview-intro": PreviewBarOption;
|
|
|
|
"outro": PreviewBarOption;
|
|
|
|
"preview-outro": PreviewBarOption;
|
|
|
|
"preview": PreviewBarOption;
|
|
|
|
"preview-preview": PreviewBarOption;
|
|
|
|
"music_offtopic": PreviewBarOption;
|
|
|
|
"preview-music_offtopic": PreviewBarOption;
|
|
|
|
"poi_highlight": PreviewBarOption;
|
|
|
|
"preview-poi_highlight": PreviewBarOption;
|
|
|
|
"filler": PreviewBarOption;
|
|
|
|
"preview-filler": PreviewBarOption;
|
|
|
|
};
|
2020-02-03 20:11:52 +01:00
|
|
|
}
|
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
export type VideoDownvotes = { segments: { uuid: HashedValue; hidden: SponsorHideType }[]; lastAccess: number };
|
2020-03-26 17:18:52 +01:00
|
|
|
|
2022-02-07 01:17:20 +01:00
|
|
|
interface SBStorage {
|
2022-02-07 05:17:34 +01:00
|
|
|
/* VideoID prefixes to UUID prefixes */
|
2022-10-08 02:51:58 +02:00
|
|
|
downvotedSegments: Record<VideoID & HashedValue, VideoDownvotes>;
|
|
|
|
navigationApiAvailable: boolean;
|
2023-11-27 07:04:06 +01:00
|
|
|
|
2024-05-08 22:44:01 +02:00
|
|
|
// Used when sync storage disabled
|
2023-11-27 07:04:06 +01:00
|
|
|
alreadyInstalled: boolean;
|
2023-12-23 19:16:19 +01:00
|
|
|
|
|
|
|
/* Contains unsubmitted segments that the user has created. */
|
|
|
|
unsubmittedSegments: Record<string, SponsorTime[]>;
|
2020-01-29 04:16:48 +01:00
|
|
|
}
|
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
class ConfigClass extends ProtoConfig<SBConfig, SBStorage> {
|
|
|
|
resetToDefault() {
|
|
|
|
chrome.storage.sync.set({
|
|
|
|
...this.syncDefaults,
|
|
|
|
userID: this.config.userID,
|
|
|
|
minutesSaved: this.config.minutesSaved,
|
|
|
|
skipCount: this.config.skipCount,
|
|
|
|
sponsorTimesContributed: this.config.sponsorTimesContributed
|
2020-01-09 18:46:04 +01:00
|
|
|
});
|
2023-12-23 19:16:19 +01:00
|
|
|
|
|
|
|
chrome.storage.local.set({
|
|
|
|
...this.localDefaults,
|
|
|
|
});
|
2023-02-13 08:31:25 +01:00
|
|
|
}
|
2020-01-09 18:46:04 +01:00
|
|
|
}
|
2019-12-31 21:07:43 +01:00
|
|
|
|
2022-02-07 01:17:20 +01:00
|
|
|
function migrateOldSyncFormats(config: SBConfig) {
|
2023-07-20 02:30:16 +02:00
|
|
|
if (config["showZoomToFillError"]) {
|
|
|
|
chrome.storage.sync.remove("showZoomToFillError");
|
|
|
|
}
|
|
|
|
|
2023-12-23 19:16:19 +01:00
|
|
|
if (config["unsubmittedSegments"] && Object.keys(config["unsubmittedSegments"]).length > 0) {
|
|
|
|
chrome.storage.local.set({
|
|
|
|
unsubmittedSegments: config["unsubmittedSegments"]
|
|
|
|
}, () => {
|
|
|
|
chrome.storage.sync.remove("unsubmittedSegments");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-19 02:30:33 +01:00
|
|
|
if (!config["chapterCategoryAdded"]) {
|
|
|
|
config["chapterCategoryAdded"] = true;
|
|
|
|
|
|
|
|
if (!config.categorySelections.some((s) => s.name === "chapter")) {
|
|
|
|
config.categorySelections.push({
|
|
|
|
name: "chapter" as Category,
|
|
|
|
option: CategorySkipOption.ShowOverlay
|
|
|
|
});
|
|
|
|
|
|
|
|
config.categorySelections = config.categorySelections;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-19 02:31:27 +01:00
|
|
|
if (config["exclusive_accessCategoryAdded"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("exclusive_accessCategoryAdded");
|
2022-01-14 05:44:09 +01:00
|
|
|
}
|
|
|
|
|
2021-12-27 02:16:26 +01:00
|
|
|
if (config["fillerUpdate"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("fillerUpdate");
|
|
|
|
}
|
2021-11-09 01:57:46 +01:00
|
|
|
if (config["highlightCategoryAdded"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("highlightCategoryAdded");
|
|
|
|
}
|
|
|
|
if (config["highlightCategoryUpdate"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("highlightCategoryUpdate");
|
2020-07-03 05:34:13 +02:00
|
|
|
}
|
2021-06-10 01:22:02 +02:00
|
|
|
|
2021-07-21 17:48:19 +02:00
|
|
|
if (config["askAboutUnlistedVideos"]) {
|
|
|
|
chrome.storage.sync.remove("askAboutUnlistedVideos");
|
|
|
|
}
|
|
|
|
|
2021-08-03 21:19:29 +02:00
|
|
|
if (!config["autoSkipOnMusicVideosUpdate"]) {
|
|
|
|
config["autoSkipOnMusicVideosUpdate"] = true;
|
|
|
|
for (const selection of config.categorySelections) {
|
2022-03-19 15:39:09 +01:00
|
|
|
if (selection.name === "music_offtopic"
|
2023-02-13 08:31:25 +01:00
|
|
|
&& selection.option === CategorySkipOption.AutoSkip) {
|
2022-03-19 15:39:09 +01:00
|
|
|
|
2021-08-03 21:19:29 +02:00
|
|
|
config.autoSkipOnMusicVideos = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-03 05:34:13 +02:00
|
|
|
if (config["disableAutoSkip"]) {
|
|
|
|
for (const selection of config.categorySelections) {
|
2020-04-06 06:40:30 +02:00
|
|
|
if (selection.name === "sponsor") {
|
|
|
|
selection.option = CategorySkipOption.ManualSkip;
|
|
|
|
|
|
|
|
chrome.storage.sync.remove("disableAutoSkip");
|
|
|
|
}
|
2020-01-06 22:11:37 +01:00
|
|
|
}
|
|
|
|
}
|
2020-04-27 00:07:10 +02:00
|
|
|
|
2022-01-08 17:07:37 +01:00
|
|
|
if (typeof config["skipKeybind"] == "string") {
|
2023-02-13 08:31:25 +01:00
|
|
|
config["skipKeybind"] = { key: config["skipKeybind"] };
|
2022-01-08 17:07:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof config["startSponsorKeybind"] == "string") {
|
2023-02-13 08:31:25 +01:00
|
|
|
config["startSponsorKeybind"] = { key: config["startSponsorKeybind"] };
|
2022-01-08 17:07:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof config["submitKeybind"] == "string") {
|
2023-02-13 08:31:25 +01:00
|
|
|
config["submitKeybind"] = { key: config["submitKeybind"] };
|
2022-01-08 17:07:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unbind key if it matches a previous one set by the user (should be ordered oldest to newest)
|
|
|
|
const keybinds = ["skipKeybind", "startSponsorKeybind", "submitKeybind"];
|
2023-02-13 08:31:25 +01:00
|
|
|
for (let i = keybinds.length - 1; i >= 0; i--) {
|
2022-01-08 17:07:37 +01:00
|
|
|
for (let j = 0; j < keybinds.length; j++) {
|
|
|
|
if (i == j)
|
|
|
|
continue;
|
|
|
|
if (keybindEquals(config[keybinds[i]], config[keybinds[j]]))
|
|
|
|
config[keybinds[i]] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-10 01:22:02 +02:00
|
|
|
// Remove some old unused options
|
|
|
|
if (config["sponsorVideoID"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("sponsorVideoID");
|
|
|
|
}
|
|
|
|
if (config["previousVideoID"] !== undefined) {
|
|
|
|
chrome.storage.sync.remove("previousVideoID");
|
|
|
|
}
|
2021-12-01 23:48:07 +01:00
|
|
|
|
|
|
|
// populate invidiousInstances with new instances if 3p support is **DISABLED**
|
2023-02-24 20:19:27 +01:00
|
|
|
if (!config["supportInvidious"] && config["invidiousInstances"].length < invidiousList.length) {
|
|
|
|
config["invidiousInstances"] = [...new Set([...invidiousList, ...config["invidiousInstances"]])];
|
2021-12-01 23:48:07 +01:00
|
|
|
}
|
2023-02-13 08:31:25 +01:00
|
|
|
|
2022-04-20 00:41:06 +02:00
|
|
|
if (config["lastIsVipUpdate"]) {
|
|
|
|
chrome.storage.sync.remove("lastIsVipUpdate");
|
|
|
|
}
|
2020-01-06 22:11:37 +01:00
|
|
|
}
|
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
const syncDefaults = {
|
|
|
|
userID: null,
|
|
|
|
isVip: false,
|
|
|
|
permissions: {},
|
|
|
|
defaultCategory: "chooseACategory" as Category,
|
|
|
|
renderSegmentsAsChapters: false,
|
|
|
|
whitelistedChannels: [],
|
|
|
|
forceChannelCheck: false,
|
|
|
|
minutesSaved: 0,
|
|
|
|
skipCount: 0,
|
|
|
|
sponsorTimesContributed: 0,
|
|
|
|
submissionCountSinceCategories: 0,
|
|
|
|
showTimeWithSkips: true,
|
|
|
|
disableSkipping: false,
|
|
|
|
muteSegments: true,
|
|
|
|
fullVideoSegments: true,
|
2023-03-18 07:05:14 +01:00
|
|
|
fullVideoLabelsOnThumbnails: true,
|
2023-02-13 08:31:25 +01:00
|
|
|
manualSkipOnFullVideo: false,
|
|
|
|
trackViewCount: true,
|
|
|
|
trackViewCountInPrivate: true,
|
|
|
|
trackDownvotes: true,
|
2024-03-19 00:45:35 +01:00
|
|
|
trackDownvotesInPrivate: false,
|
2023-02-13 08:31:25 +01:00
|
|
|
dontShowNotice: false,
|
|
|
|
noticeVisibilityMode: NoticeVisbilityMode.FadedForAutoSkip,
|
|
|
|
hideVideoPlayerControls: false,
|
|
|
|
hideInfoButtonPlayerControls: false,
|
|
|
|
hideDeleteButtonPlayerControls: false,
|
|
|
|
hideUploadButtonPlayerControls: false,
|
|
|
|
hideSkipButtonPlayerControls: false,
|
|
|
|
hideDiscordLaunches: 0,
|
|
|
|
hideDiscordLink: false,
|
|
|
|
invidiousInstances: ["invidious.snopyta.org"], // leave as default
|
|
|
|
supportInvidious: false,
|
|
|
|
serverAddress: CompileConfig.serverAddress,
|
|
|
|
minDuration: 0,
|
|
|
|
skipNoticeDuration: 4,
|
|
|
|
audioNotificationOnSkip: false,
|
|
|
|
checkForUnlistedVideos: false,
|
|
|
|
testingServer: false,
|
|
|
|
refetchWhenNotFound: true,
|
|
|
|
ytInfoPermissionGranted: false,
|
|
|
|
allowExpirements: true,
|
|
|
|
showDonationLink: true,
|
|
|
|
showPopupDonationCount: 0,
|
|
|
|
showUpsells: true,
|
2023-06-22 01:55:17 +02:00
|
|
|
showNewFeaturePopups: true,
|
2023-02-13 08:31:25 +01:00
|
|
|
donateClicked: 0,
|
|
|
|
autoHideInfoButton: true,
|
|
|
|
autoSkipOnMusicVideos: false,
|
|
|
|
scrollToEditTimeUpdate: false, // false means the tooltip will be shown
|
|
|
|
categoryPillUpdate: false,
|
|
|
|
showChapterInfoMessage: true,
|
|
|
|
darkMode: true,
|
|
|
|
showCategoryGuidelines: true,
|
|
|
|
showCategoryWithoutPermission: false,
|
|
|
|
showSegmentNameInChapterBar: true,
|
|
|
|
useVirtualTime: true,
|
|
|
|
showSegmentFailedToFetchWarning: true,
|
|
|
|
allowScrollingToEdit: true,
|
2023-06-22 05:07:09 +02:00
|
|
|
deArrowInstalled: false,
|
2023-11-08 22:07:59 +01:00
|
|
|
showDeArrowPromotion: true,
|
2023-11-08 02:49:25 +01:00
|
|
|
showDeArrowInSettings: true,
|
2023-11-08 22:07:59 +01:00
|
|
|
shownDeArrowPromotion: false,
|
2023-07-20 02:30:16 +02:00
|
|
|
showZoomToFillError2: true,
|
2023-11-08 03:05:39 +01:00
|
|
|
cleanPopup: false,
|
2023-02-13 08:31:25 +01:00
|
|
|
|
|
|
|
categoryPillColors: {},
|
2021-11-07 21:26:00 +01:00
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
/**
|
|
|
|
* Default keybinds should not set "code" as that's gonna be different based on the user's locale. They should also only use EITHER ctrl OR alt modifiers (or none).
|
|
|
|
* Using ctrl+alt, or shift may produce a different character that we will not be able to recognize in different locales.
|
|
|
|
* The exception for shift is letters, where it only capitalizes. So shift+A is fine, but shift+1 isn't.
|
|
|
|
* Don't forget to add the new keybind to the checks in "KeybindDialogComponent.isKeybindAvailable()" and in "migrateOldFormats()"!
|
|
|
|
* TODO: Find a way to skip having to update these checks. Maybe storing keybinds in a Map?
|
|
|
|
*/
|
|
|
|
skipKeybind: { key: "Enter" },
|
2023-09-23 21:40:11 +02:00
|
|
|
skipToHighlightKeybind: { key: "Enter", ctrl: true },
|
2023-02-13 08:31:25 +01:00
|
|
|
startSponsorKeybind: { key: ";" },
|
|
|
|
submitKeybind: { key: "'" },
|
2023-12-22 17:41:35 +01:00
|
|
|
actuallySubmitKeybind: { key: "'", ctrl: true },
|
2024-01-15 00:34:23 +01:00
|
|
|
previewKeybind: { key: ";", ctrl: true },
|
2023-02-13 08:31:25 +01:00
|
|
|
nextChapterKeybind: { key: "ArrowRight", ctrl: true },
|
|
|
|
previousChapterKeybind: { key: "ArrowLeft", ctrl: true },
|
2023-12-22 17:48:21 +01:00
|
|
|
closeSkipNoticeKeybind: { key: "Backspace" },
|
2023-02-13 08:31:25 +01:00
|
|
|
|
|
|
|
categorySelections: [{
|
|
|
|
name: "sponsor" as Category,
|
|
|
|
option: CategorySkipOption.AutoSkip
|
|
|
|
}, {
|
|
|
|
name: "poi_highlight" as Category,
|
|
|
|
option: CategorySkipOption.ManualSkip
|
|
|
|
}, {
|
|
|
|
name: "exclusive_access" as Category,
|
|
|
|
option: CategorySkipOption.ShowOverlay
|
2023-03-19 02:30:33 +01:00
|
|
|
}, {
|
|
|
|
name: "chapter" as Category,
|
|
|
|
option: CategorySkipOption.ShowOverlay
|
2023-02-13 08:31:25 +01:00
|
|
|
}],
|
2020-07-03 05:34:13 +02:00
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
payments: {
|
|
|
|
licenseKey: null,
|
|
|
|
lastCheck: 0,
|
|
|
|
lastFreeCheck: 0,
|
|
|
|
freeAccess: false,
|
|
|
|
chaptersAllowed: false
|
|
|
|
},
|
2020-01-09 18:46:04 +01:00
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
colorPalette: {
|
|
|
|
red: "#780303",
|
|
|
|
white: "#ffffff",
|
|
|
|
locked: "#ffc83d"
|
|
|
|
},
|
2022-02-07 05:17:34 +01:00
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
// Preview bar
|
|
|
|
barTypes: {
|
|
|
|
"preview-chooseACategory": {
|
|
|
|
color: "#ffffff",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"sponsor": {
|
|
|
|
color: "#00d400",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-sponsor": {
|
|
|
|
color: "#007800",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"selfpromo": {
|
|
|
|
color: "#ffff00",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-selfpromo": {
|
|
|
|
color: "#bfbf35",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"exclusive_access": {
|
|
|
|
color: "#008a5c",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"interaction": {
|
|
|
|
color: "#cc00ff",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-interaction": {
|
|
|
|
color: "#6c0087",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"intro": {
|
|
|
|
color: "#00ffff",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-intro": {
|
|
|
|
color: "#008080",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"outro": {
|
|
|
|
color: "#0202ed",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-outro": {
|
|
|
|
color: "#000070",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview": {
|
|
|
|
color: "#008fd6",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-preview": {
|
|
|
|
color: "#005799",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"music_offtopic": {
|
|
|
|
color: "#ff9900",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-music_offtopic": {
|
|
|
|
color: "#a6634a",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"poi_highlight": {
|
|
|
|
color: "#ff1684",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"preview-poi_highlight": {
|
|
|
|
color: "#9b044c",
|
|
|
|
opacity: "0.7"
|
|
|
|
},
|
|
|
|
"filler": {
|
|
|
|
color: "#7300FF",
|
|
|
|
opacity: "0.9"
|
|
|
|
},
|
|
|
|
"preview-filler": {
|
|
|
|
color: "#2E0066",
|
|
|
|
opacity: "0.7"
|
2022-02-07 05:17:34 +01:00
|
|
|
}
|
|
|
|
}
|
2023-02-13 08:31:25 +01:00
|
|
|
};
|
2022-05-24 10:04:56 +02:00
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
const localDefaults = {
|
|
|
|
downvotedSegments: {},
|
2023-11-27 07:04:06 +01:00
|
|
|
navigationApiAvailable: null,
|
2023-12-23 19:16:19 +01:00
|
|
|
alreadyInstalled: false,
|
|
|
|
|
|
|
|
unsubmittedSegments: {}
|
2023-02-13 08:31:25 +01:00
|
|
|
};
|
2020-01-29 04:16:48 +01:00
|
|
|
|
2023-02-13 08:31:25 +01:00
|
|
|
const Config = new ConfigClass(syncDefaults, localDefaults, migrateOldSyncFormats);
|
|
|
|
export default Config;
|