New Userscript

try to take over the world!

  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @grant none
  8. // @include https://www.twitch.tv/*
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. setTimeout(function() {
  14. if (document.getElementsByClassName('claimable-bonus__icon') && document.getElementsByClassName('claimable-bonus__icon')[0]) {
  15. document.getElementsByClassName('claimable-bonus__icon')[0].click();
  16. }
  17. }, 5000).call(this);
  18.  
  19. // Your code here...
  20. })();

QingJ © 2025

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