Enjoy!
// ==UserScript==
// @name Corona_Karen YT Badge
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Enjoy!
// @author G1_1777gold
// @match https://www.nitrotype.com/garage
// @grant none
// ==/UserScript==
var _bucket_checker_ = null;
function look_for_bucket(){
var a = document.getElementsByClassName('bucket bucket--f');
if(a.length != 0 && a.length != undefined){
add_the_badge(a);
clearInterval(_bucket_checker_);
}
}
function add_the_badge(a){
var node = document.createElement("div");
node.className = "bucket-media";
node.innerHTML = '<img alt="Scoreboard Top 3" class="profile-badge" src="https://media.discordapp.net/attachments/872239233530757232/892224757989273670/Screen_Shot_2021-09-27_at_9.42.22_PM.png">';
a[0].insertBefore(node, a[0].childNodes[0]);
}
_bucket_checker_ = setInterval(look_for_bucket, 200);