Bir eimor suggestion

recommendation suggestion bar.

// ==UserScript==
// @name         Bir eimor suggestion
// @namespace    http://token.com
// @version      2.2
// @description  recommendation suggestion bar.
// @author       John Park
// @match        https://*.youtube.com/*
// @grant        none
// ==/UserScript==
 
(function() {
    'use strict';
 
    window.addEventListener("load", function () {
        var divElement = document.querySelector("#secondary-inner")
        divElement.remove();
 
    }, false)
})();