aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/dearrowPromotion.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dearrowPromotion.ts b/src/dearrowPromotion.ts
index 13fa8288..f1eec399 100644
--- a/src/dearrowPromotion.ts
+++ b/src/dearrowPromotion.ts
@@ -9,8 +9,10 @@ import { isVisible } from "./utils/pageUtils";
import { asyncRequestToServer } from "./utils/requests";
let tooltip: Tooltip = null;
+const showDeArrowPromotion = false;
export async function tryShowingDeArrowPromotion() {
- if (Config.config.showDeArrowPromotion
+ if (showDeArrowPromotion
+ && Config.config.showDeArrowPromotion
&& !isOnMobileYouTube()
&& !isOnInvidious()
&& document.URL.includes("watch")