Torn - Backdrop Remover

Hides the backdrop on Torn by applying display:none via CSS

// ==UserScript==
// @name         Torn - Backdrop Remover
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Hides the backdrop on Torn by applying display:none via CSS
// @author       Neptune
// @match        https://www.torn.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    const style = document.createElement('style');
    style.innerHTML = `
        .backdrops-container {
            display: none !important;
        }
    `;
    document.head.appendChild(style);
})();