Auto Claim Free Case

Открывает 24 часовой кейс

// ==UserScript==
// @name         Auto Claim Free Case
// @namespace    Free Case
// @version      1.0
// @description  Открывает 24 часовой кейс
// @author       Role_Play
// @match        https://grib-free.xyz/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    function clickButton() {
        const button = document.querySelector('button.bg-orange-300');
        if (button) {
            button.click();
        }
    }

    window.addEventListener('load', clickButton);
})();