Twitch, Auto reload when *k error

try to take over the world!

  1. // ==UserScript==
  2. // @name Twitch, Auto reload when *k error
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://www.twitch.tv/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=twitch.tv
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. setInterval(() => {
  15. var button = document.querySelector(".content-overlay-gate__allow-pointers button");
  16. if (button) {
  17. button.click();
  18. }
  19. }, 1000);
  20. })();

QingJ © 2025

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