// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; var promoDiv = document.querySelector('div.pmoabs'); if (promoDiv) { promoDiv.remove(); } })();