Hides Torn's ticker text
// ==UserScript==
// @name Torn: Hide ticker text
// @description Hides Torn's ticker text
// @version 0.1
// @author Xeno2
// @match https://www.torn.com/*
// @grant GM_addStyle
// @run-at document-start
// @namespace https://greasyfork.org/users/674903
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
.header-wrapper-bottom .container {
Display: none;
}
`);
})();