scope overlay, WORKS WELL! however u rarely cleaned it so it is dirty..
// ==UserScript==
// @name Custom Scope design (WORKING!!!!)
// @namespace http://tampermonkey.net/
// @version 1.1
// @description scope overlay, WORKS WELL! however u rarely cleaned it so it is dirty..
// @match https://shellshock.io/*
// @grant none
// ==/UserScript==
(function () {
const img = "https://thfvnext.bing.com/th/id/OIP.IGWMpw0tXf4UOt934_HouAHaHa";
const style = document.createElement("style");
style.innerHTML = `
#maskmiddle {
background: url("${img}") center center no-repeat !important;
background-size: contain !important;
width: 100vh;
height: 100vh;
pointer-events: none;
/* 🔥 transparency */
opacity: 0.35;
/* optional: better visibility */
mix-blend-mode: screen;
}
`;
document.head.appendChild(style);
})();