Hides elements with the class "backdrops-container"
当前为
// ==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; }');
})();