Remove annoying covid 19 banner which displays often under video.
// ==UserScript==
// @name Hide Covid 19 Banner Under Video
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Remove annoying covid 19 banner which displays often under video.
// @author LordSnooze
// @match https://www.youtube.com/watch*
// @grant none
// ==/UserScript==
setTimeout(myFunction, 3000) //Just so you can see the script is working
function myFunction() {
var x = document.getElementById("clarify-box");
if (x) {
x.style.display = "none";
}
}