diff --git a/chrome-extension/background.js b/chrome-extension/background.js index 67618d2..e44e0a5 100644 --- a/chrome-extension/background.js +++ b/chrome-extension/background.js @@ -2,7 +2,7 @@ const DEFAULT_CONFIG = { discordWebhook: "", - checkIntervalSeconds: 15, // Now in SECONDS, not minutes! + checkIntervalSeconds: 90, // Minimum 60 to avoid PokemonCenter bot detection enabled: true, urls: [ "https://www.pokemoncenter.com/category/tcg-cards?sort=relevance" @@ -55,7 +55,7 @@ function scheduleNextCheck() { return; } - const intervalMs = Math.max(10, config.checkIntervalSeconds) * 1000; // Min 10 seconds + const intervalMs = Math.max(60, config.checkIntervalSeconds) * 1000; // Min 60 seconds to avoid bot detection setTimeout(async () => { if (!isChecking && config.enabled) { diff --git a/chrome-extension/popup.html b/chrome-extension/popup.html index c896c78..34127dd 100644 --- a/chrome-extension/popup.html +++ b/chrome-extension/popup.html @@ -215,8 +215,8 @@
- - Min 10 sec. Recommended: 15-30 sec + + Min 60 sec to avoid bans. Recommended: 90 sec