Remove black background on the epicmafia.com
// ==UserScript==
// @name Remove black background
// @namespace https://greasyfork.org/en/users/159342-cleresd
// @description Remove black background on the epicmafia.com
// @version 1.04
// @match https://epicmafia.com/*
// @exclude https://epicmafia.com/game*
// @run-at document-idle
// ==/UserScript==
// without timeout doesnt work
setTimeout(function(){
$('body').css('filter', '');
$('html > div').remove();
}, 450);