From 0e28dc3f0859b0d714ef7ea508f8484b1e73edb0 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 8 Oct 2025 13:30:50 -0400 Subject: [PATCH] Fix blacklist --- background.js | 11 ++++++++++- options.js | 4 ++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/background.js b/background.js index 02373d0..40ae118 100644 --- a/background.js +++ b/background.js @@ -2,8 +2,17 @@ const SCROBBLE_ENDPOINT = "https://life.lab.unbl.ink/?scrobble_url="; const STOP_ENDPOINT = "https://life.lab.unbl.ink/?action=stop&scrobble_url="; // Default settings +// *.google.com +// *.annas-archive.org +// *.limetorrents.fun +// gmail.com +// *.duckduckgo.com +// *.ebay.com +// *.amazon.com +// *.boardgamegeek.com +// *.chatgpt.com const DEFAULT_SETTINGS = { - delay: 10, + delay: 7, blacklist: ["*.unbl.ink", "moz-extension://"], paused: false, }; diff --git a/options.js b/options.js index 446a6ac..23a3b87 100644 --- a/options.js +++ b/options.js @@ -2,8 +2,8 @@ document.addEventListener("DOMContentLoaded", restore); document.getElementById("save").addEventListener("click", save); const DEFAULT_SETTINGS = { - delay: 10, - blacklist: ["*.unbl.ink", "moz-extension://"], + delay: 7, + blacklist: ["*.unbl.ink", "moz-extension://", "*.google.com", "gmail.com", "*.chatgpt.com", "*.ebay.com", "*.amazon.com"], paused: false, };