Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Twitch Channel Points Auto Reclaim
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description A script that automatically checks and clicks the reclaimable channel points bonus on Twitch
  6. // @author me
  7. // @match https://www.twitch.tv/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. window.setInterval(function(){
  13. document.getElementsByClassName('claimable-bonus__icon')[0].click();
  14. }, 5000);
  15. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement