From 1baab2488ca5acc949d22f8c9a0d8970ce571e69 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 24 Feb 2025 18:25:31 +0000 Subject: [PATCH] Edit storage.js - changed default value of ref to `true` --- core_js/storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core_js/storage.js b/core_js/storage.js index 22dbd1d..ee552c6 100644 --- a/core_js/storage.js +++ b/core_js/storage.js @@ -219,7 +219,7 @@ function initSettings() { storage.contextMenuEnabled = true; storage.historyListenerEnabled = true; storage.localHostsSkipping = true; - storage.referralMarketing = false; + storage.referralMarketing = true; storage.logLimit = 100; storage.domainBlocking = true; storage.pingBlocking = true;