Get Channel Points Twitch

Script that automatically get Twitch channel point chests.

  1. // ==UserScript==
  2. // @name Get Channel Points Twitch
  3. // @version 1.6
  4. // @description Script that automatically get Twitch channel point chests.
  5. // @author Spielberg
  6. // @include https://www.twitch.tv/*
  7. // @grant none
  8. // @icon https://static.twitchcdn.net/assets/favicon-32-d6025c14e900565d6177.png
  9. // @namespace https://gf.qytechs.cn/pt-BR/scripts/391663-get-channel-points-twitch
  10. // ==/UserScript==
  11.  
  12. function getCoin() {
  13. setInterval(() => {
  14. const chest = document.querySelector(".claimable-bonus__icon");
  15. if (chest != undefined) {
  16. chest.click();
  17. }
  18. }, 1000);
  19. }
  20.  
  21. getCoin();

QingJ © 2025

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