No Gay Youtube

remove some sinful ad content on youtube during pride month

// ==UserScript==
// @name         No Gay Youtube
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  remove some sinful ad content on youtube during pride month
// @author       You
// @match        https://www.youtube.com*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @license      none_lol
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById("img").remove();
    document.getElementById("logo").remove();

})();