Bodil / Twitter Trends Remover

// ==UserScript==
// @name         Twitter Trends Remover
// @namespace    https://openuserjs.org/users/Bodil
// @locale       en
// @version      1.1
// @description  Removes the Twitter "trending now" sidebar.
// @copyright    Copyright 2020 Bodil Stokke (https://openuserjs.org/users/Bodil)
// @author       Bodil
// @match        https://twitter.com/*
// @license      GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// @grant        GM_addStyle
// @run-at       document-end
// ==/UserScript==

// ==OpenUserJS==
// @author Bodil
// ==/OpenUserJS==

GM_addStyle("div[aria-label=\"Timeline: Trending now\"] { display: none; }");