Skip to content

Instantly share code, notes, and snippets.

@crashmax-dev
Created December 8, 2023 18:16
Show Gist options
  • Save crashmax-dev/bf58a772d5d4968943aed622905b8acf to your computer and use it in GitHub Desktop.
Save crashmax-dev/bf58a772d5d4968943aed622905b8acf to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Viewers AutoReload
// @version 0.1
// @author crashmax
// @match https://www.twitch.tv/moderator/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitch.tv
// @grant none
// ==/UserScript==
setInterval(() => {
const el = document.querySelector('[data-test-selector="chat-viewers__refresh"]')
el?.click()
}, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment