Shampooh / YouTube COVID Remover

// ==UserScript==
// @name         YouTube COVID Remover
// @namespace    https://twitter.com/siampuu
// @version      0.1
// @description  Removes the "latest information" box on YouTube videos that the YouTube AI mysteriously thinks have something to do with COVID. Because "Korone" sounds vaguely like "Corona" I guess.
// @author       Shampooh
// @match *://*.youtube.com/*
// @match *://*.youtu.be/*
// @license MIT
// @grant        none
// ==/UserScript==

window.addEventListener('load', (event) => {
    var covidbox = document.getElementById("clarify-box");
    covidbox.remove();
});

console.log("Only Koronevirus here!");