NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bitcoin chest clicker // @version 1 // @include https://www.twitch.tv/* // @grant none // @license GPL-2.0-only // ==/UserScript== /* jshint esversion: 6 */ setInterval(() => { document.querySelectorAll('[data-test-selector="community-points-summary"] > :last-child > .tw-transition > * > * > *').forEach((a) => a.click()); console.log('clicking on bitcoin chest at ' + (new Date()).toLocaleTimeString()); }, 30000);