bg image replacer

ezez

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         bg image replacer
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  ezez
// @author       r!PsAw
// @match        https://diep.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=diep.io
// @grant        none
// @license      MIT
// ==/UserScript==

/*
to get any image link:
1. Find an image on the internet
2. Right click
3. Select "Copy Image Adress"
*/

const image_link = 'https://img.decrypt.co/insecure/rs:fit:3840:0:0:0/plain/https://cdn.decrypt.co/wp-content/uploads/2025/01/360noscope420blazeitMLG-2-gID_7.jpeg@webp'; //<-- insert image link between the '
function await_image_element(){
    let image_element = document.querySelector("#backdrop-asset");
    if(!image_element){
        setTimeout(await_image_element, 100);
    }else{
        image_element.src = image_link;
    }
}
await_image_element();