Zaka-Zaka auto-join gift giveaway

This script complements this one https://gf.qytechs.cn/en/scripts/466333-zaka-zaka-gift-auto-participate

// ==UserScript==
// @name         Zaka-Zaka auto-join gift giveaway
// @namespace    tampermonkey-scripts
// @version      1.2
// @description  This script complements this one https://gf.qytechs.cn/en/scripts/466333-zaka-zaka-gift-auto-participate
// @author       Role_Play
// @match        https://zaka-zaka.com/game/gifts/*
// @exclude      https://zaka-zaka.com/game/gifts/
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const joinButton = document.querySelector('.gifts-detail-btn span');

    if (joinButton) {
        joinButton.click();
        setTimeout(() => {
            window.location.href = 'https://zaka-zaka.com/game/gifts/';
        }, 1000);
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址