YouTube - Remove Annoyances

Remove annoying elements on YouTube pages

// ==UserScript==
// @name         YouTube - Remove Annoyances
// @namespace    x3ric.js
// @version      0.1
// @description  Remove annoying elements on YouTube pages
// @author       x3ric
// @license      MIT
// @match        https://youtube.com/* 
// @match        https://www.youtube.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    var popupContainer = document.querySelector('html.efyt-control-bar-visible.dflsfq.agjrsnfl body ytd-app ytd-popup-container.style-scope.ytd-app tp-yt-paper-dialog.style-scope.ytd-popup-container');
    if (popupContainer) {
        popupContainer.parentNode.removeChild(popupContainer);
    }
})();