Greasy Fork is available in English.

Hitbox Anti Blackscreen

Removes blackscreen, tell me if it doesn't work.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Hitbox Anti Blackscreen
// @namespace    http://tampermonkey.net/
// @version      v1.0.0
// @description  Removes blackscreen, tell me if it doesn't work.
// @author       iNeonz
// @match        https://hitbox.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=hitbox.io
// @grant        none
// ==/UserScript==

setInterval(() => {
    let block = document.querySelector("#appContainer > div.blocker");
    if (block){
     console.log(block);
     block.remove();
    }// Simple loop that removes blackscreen
},1000);