Increase recheck timer to 2 minutes

This commit is contained in:
Abhorrent_Anger 2025-06-25 11:57:59 +03:00
parent 61bb2341a9
commit fdf4b169b0

View File

@ -1,7 +1,7 @@
// ==UserScript==
// @name Skinrave Rakeback Collector
// @namespace https://pube.tk
// @version 2025-06-16
// @version 2025-06-25
// @description Claims rewards
// @author Abhorrent_Anger
// @match https://skinrave.gg/en/rewards
@ -12,7 +12,7 @@
// @run-at document-end
// ==/UserScript==
const RECHECK_TIMER = 60000;
const RECHECK_TIMER = 2 * 60 * 1000;
const INITIAL_TIMER = 2000;
const MAIN_WINDOW_SELECTOR = "div.flex.overflow-y-auto.overflow-x-hidden";
const RAKEBACK_AMOUNT_SELECTOR = 'div[data-testid="rakeback-amount"]';