2020-03-12 00:35:20 +01:00
|
|
|
import SubmissionNotice from "./render/SubmissionNotice";
|
|
|
|
import SkipNoticeComponent from "./components/SkipNoticeComponent";
|
2021-01-17 20:25:45 +01:00
|
|
|
import SkipNotice from "./render/SkipNotice";
|
2020-03-12 00:35:20 +01:00
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface ContentContainer {
|
2020-03-12 00:35:20 +01:00
|
|
|
(): {
|
2020-12-15 19:54:33 +01:00
|
|
|
vote: (type: number, UUID: string, category?: string, skipNotice?: SkipNoticeComponent) => void,
|
2020-03-12 00:35:20 +01:00
|
|
|
dontShowNoticeAgain: () => void,
|
2020-05-20 05:21:51 +02:00
|
|
|
unskipSponsorTime: (segment: SponsorTime) => void,
|
2020-04-05 03:04:17 +02:00
|
|
|
sponsorTimes: SponsorTime[],
|
|
|
|
sponsorTimesSubmitting: SponsorTime[],
|
2021-01-17 20:25:45 +01:00
|
|
|
skipNotices: SkipNotice[],
|
2020-03-12 00:35:20 +01:00
|
|
|
v: HTMLVideoElement,
|
|
|
|
sponsorVideoID,
|
2020-05-20 05:21:51 +02:00
|
|
|
reskipSponsorTime: (segment: SponsorTime) => void,
|
2020-03-12 00:35:20 +01:00
|
|
|
updatePreviewBar: () => void,
|
|
|
|
onMobileYouTube: boolean,
|
|
|
|
sponsorSubmissionNotice: SubmissionNotice,
|
|
|
|
resetSponsorSubmissionNotice: () => void,
|
2020-11-15 02:36:16 +01:00
|
|
|
updateEditButtonsOnPlayer: () => void,
|
2020-09-15 16:26:46 +02:00
|
|
|
previewTime: (time: number, unpause?: boolean) => void,
|
2020-12-15 19:54:33 +01:00
|
|
|
videoInfo: VideoInfo,
|
2020-05-12 03:04:10 +02:00
|
|
|
getRealCurrentTime: () => number
|
2020-03-12 00:35:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface FetchResponse {
|
2020-05-25 04:42:55 +02:00
|
|
|
responseText: string,
|
|
|
|
status: number,
|
|
|
|
ok: boolean
|
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface VideoDurationResponse {
|
2020-01-29 05:52:15 +01:00
|
|
|
duration: number;
|
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export enum CategorySkipOption {
|
2020-04-04 18:58:02 +02:00
|
|
|
ShowOverlay,
|
|
|
|
ManualSkip,
|
|
|
|
AutoSkip
|
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface CategorySelection {
|
2020-04-03 04:13:36 +02:00
|
|
|
name: string;
|
2020-04-04 18:58:02 +02:00
|
|
|
option: CategorySkipOption
|
2020-04-03 04:13:36 +02:00
|
|
|
}
|
2020-03-12 00:35:20 +01:00
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export enum SponsorHideType {
|
2020-04-26 05:41:08 +02:00
|
|
|
Visible = undefined,
|
|
|
|
Downvoted = 1,
|
|
|
|
MinimumDuration
|
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface SponsorTime {
|
2021-05-21 21:51:58 +02:00
|
|
|
segment: [number] | [number, number];
|
2020-04-05 03:04:17 +02:00
|
|
|
UUID: string;
|
|
|
|
|
|
|
|
category: string;
|
2020-04-26 05:41:08 +02:00
|
|
|
|
|
|
|
hidden?: SponsorHideType;
|
2020-04-05 03:04:17 +02:00
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface PreviewBarOption {
|
2020-06-04 02:20:02 +02:00
|
|
|
color: string,
|
|
|
|
opacity: string
|
|
|
|
}
|
|
|
|
|
2020-12-13 20:48:09 +01:00
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface Registration {
|
2020-12-13 20:48:09 +01:00
|
|
|
message: string,
|
|
|
|
id: string,
|
|
|
|
allFrames: boolean,
|
|
|
|
js: browser.extensionTypes.ExtensionFileOrCode[],
|
|
|
|
css: browser.extensionTypes.ExtensionFileOrCode[],
|
|
|
|
matches: string[]
|
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface BackgroundScriptContainer {
|
2020-12-13 20:48:09 +01:00
|
|
|
registerFirefoxContentScript: (opts: Registration) => void,
|
|
|
|
unregisterFirefoxContentScript: (id: string) => void
|
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export interface VideoInfo {
|
2020-12-15 13:33:38 +01:00
|
|
|
responseContext: {
|
|
|
|
serviceTrackingParams: Array<{service: string, params: Array<{key: string, value: string}>}>,
|
|
|
|
webResponseContextExtensionData: {
|
|
|
|
hasDecorated: boolean
|
|
|
|
}
|
|
|
|
},
|
|
|
|
playabilityStatus: {
|
|
|
|
status: string,
|
|
|
|
playableInEmbed: boolean,
|
|
|
|
miniplayer: {
|
|
|
|
miniplayerRenderer: {
|
|
|
|
playbackMode: string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
streamingData: unknown;
|
|
|
|
playbackTracking: unknown;
|
|
|
|
videoDetails: {
|
|
|
|
videoId: string,
|
|
|
|
title: string,
|
|
|
|
lengthSeconds: string,
|
|
|
|
keywords: string[],
|
|
|
|
channelId: string,
|
|
|
|
isOwnerViewing: boolean,
|
|
|
|
shortDescription: string,
|
|
|
|
isCrawlable: boolean,
|
|
|
|
thumbnail: {
|
|
|
|
thumbnails: Array<{url: string, width: number, height: number}>
|
|
|
|
},
|
|
|
|
averageRating: number,
|
|
|
|
allowRatings: boolean,
|
|
|
|
viewCount: string,
|
|
|
|
author: string,
|
|
|
|
isPrivate: boolean,
|
|
|
|
isUnpluggedCorpus: boolean,
|
|
|
|
isLiveContent: boolean,
|
|
|
|
};
|
|
|
|
playerConfig: unknown;
|
|
|
|
storyboards: unknown;
|
|
|
|
microformat: {
|
|
|
|
playerMicroformatRenderer: {
|
|
|
|
thumbnail: {
|
|
|
|
thumbnails: Array<{url: string, width: number, height: number}>
|
|
|
|
},
|
|
|
|
embed: {
|
|
|
|
iframeUrl: string,
|
|
|
|
flashUrl: string,
|
|
|
|
width: number,
|
|
|
|
height: number,
|
|
|
|
flashSecureUrl: string,
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
simpleText: string,
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
simpleText: string,
|
|
|
|
},
|
|
|
|
lengthSeconds: string,
|
|
|
|
ownerProfileUrl: string,
|
|
|
|
externalChannelId: string,
|
|
|
|
availableCountries: string[],
|
|
|
|
isUnlisted: boolean,
|
|
|
|
hasYpcMetadata: boolean,
|
|
|
|
viewCount: string,
|
|
|
|
category: string,
|
|
|
|
publishDate: string,
|
|
|
|
ownerChannelName: string,
|
|
|
|
uploadDate: string,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
trackingParams: string;
|
|
|
|
attestation: unknown;
|
|
|
|
messages: unknown;
|
|
|
|
}
|
|
|
|
|
2021-01-17 18:56:37 +01:00
|
|
|
export type VideoID = string;
|
|
|
|
|
|
|
|
export type StorageChangesObject = { [key: string]: chrome.storage.StorageChange };
|
|
|
|
|
2020-11-15 02:36:16 +01:00
|
|
|
export type UnEncodedSegmentTimes = [string, SponsorTime[]][];
|
2021-05-21 23:33:48 +02:00
|
|
|
|
|
|
|
export enum ChannelIDStatus {
|
|
|
|
Fetching,
|
|
|
|
Found,
|
|
|
|
Failed
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ChannelIDInfo {
|
|
|
|
id: string,
|
|
|
|
status: ChannelIDStatus
|
|
|
|
}
|