Remove Promo Div

Removes the promo div from the page

// ==UserScript==
// @name         Remove Promo Div
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Removes the promo div from the page
// @match        https://vanced-youtube.neocities.org/2015/*
// @grant        none
// @license     MIT
// ==/UserScript==

(function() {
    'use strict';

    var promoDiv = document.querySelector('div.pmoabs');
    if (promoDiv) {
        promoDiv.remove();
    }
})();