Remove Twitter outdated banner

Removes Twitter outdated banner when using old Twitter

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Remove Twitter outdated banner
// @name:en     Remove Twitter outdated banner
// @description Removes Twitter outdated banner when using old Twitter
// @match       https://twitter.com/*
// @grant       GM_addStyle
// @author      rebane2001
// @run-at      document-start
// @version 0.0.1.20200220111056
// @namespace https://greasyfork.org/users/447264
// ==/UserScript==

// Visually remove banner with CSS so that they get removed instantly on pageload
GM_addStyle(".topbar-spacer { padding-top: 46px!important; } #banners { display: none; }");

/* Old element removal code
$("#banners").remove();
$(".topbar-spacer").remove();
*/