Skip to content

Instantly share code, notes, and snippets.

@c0nfusecode
Created June 6, 2023 15:25
Show Gist options
  • Save c0nfusecode/df02d109cbeee57ec9b566fd37edf3c1 to your computer and use it in GitHub Desktop.
Save c0nfusecode/df02d109cbeee57ec9b566fd37edf3c1 to your computer and use it in GitHub Desktop.
Anti anti adv for steamid.io
// ==UserScript==
// @name Anti anti adv
// @version 228.0
// @description try to take over the world!
// @author You
// @match https://steamid.io/*
// @icon https://steamid.io/
// @grant none
// ==/UserScript==
(function() {
'use strict';
var lox = setInterval(() => {
var elem = document.getElementsByClassName("fc-dialog-container")[0]
if(elem) { elem.remove(); clearInterval(lox); }
},1)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment