// ==UserScript== // @name Scenexe Vision fix by Ashy // @namespace http://tampermonkey.net/ // @version 0.8 // @description Just more vision. Better than others...:) // @description use wheel to zoom + no dark in cross! // @description +anty annoying asking about adblock // @author AshyUwU // @match https://scenexe.io/ // @match https://new-test.scenexe.io/ // @icon https://www.google.com/s2/favicons?sz=64&domain=scenexe.io // @grant none // @license MIT // @downloadURL none // ==/UserScript== usingAdBlocker = false; function change_atribute(){ var change_css = document.getElementById('darkness-canvas'); change_css.setAttribute("style", "z-index: -20 !important"); }; change_atribute(); function change_scs(s_size) { if (ss < 1) { ss = 1; } Object.defineProperty(Object.prototype, "cameraSizeMultiplier", { configurable: true, get: () => s_size, set: () => { } }); } var ss = 1; document.addEventListener('wheel', function (e) { if (e.deltaY > 0) { ss += 0.1; } else { ss -= 0.1; } change_scs(ss); });