Block backdrops-container on Torn

Hides elements with the class "backdrops-container"

目前為 2025-09-30 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Block backdrops-container on Torn
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Hides elements with the class "backdrops-container"
// @author       BritishBenji
// @match        https://www.torn.com/*
// @grant        GM_addStyle
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    GM_addStyle('.backdrops-container { display: none !important; }');
})();