Twitch.tv Channel Points Auto-clicker

Clicks the green gift button for you

// ==UserScript==
// @name         Twitch.tv Channel Points Auto-clicker
// @namespace    http://kryogenic.org/
// @version      0.2.1
// @description  Clicks the green gift button for you
// @author       kryogenic
// @match        https://www.twitch.tv/*
// @grant        none
// ==/UserScript==



(function() {
    setInterval(function(){
        var gift = document.getElementsByClassName('claimable-bonus__icon')[0];
        if (gift) {
            gift.click()
        }
    }, 5000)
})();