From 3da6a57e42211c41cd28ffcdd8194eceeb3ab74a Mon Sep 17 00:00:00 2001 From: Michael C Date: Tue, 10 May 2022 21:56:01 -0400 Subject: [PATCH] shorcut creating preview bar on invidious --- src/content.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/content.ts b/src/content.ts index d969fc32..c3796cb9 100644 --- a/src/content.ts +++ b/src/content.ts @@ -391,6 +391,16 @@ function handleMobileControlsMutations(): void { function createPreviewBar(): void { if (previewBar !== null) return; + if (onInvidious) { // shortut invidious + // skip isVisible check for invidious + const el = document.querySelector(".vjs-progress-holder"); + if (el) { + previewBar = new PreviewBar(el, onMobileYouTube, onInvidious); + updatePreviewBar(); + return; + } + } + const progressElementSelectors = [ // For mobile YouTube ".progress-bar-background",