sxuid / Ultrawide YouTube subscription box

// ==UserScript==
// @name         Ultrawide YouTube subscription box
// @namespace    http://tampermonkey.net/
// @version      0.2
// @license MIT
// @description  Ultrawide YouTube subscription box
// @author       sxuid
// @match        https://www.youtube.com/feed/subscriptions*
// @grant        none
// ==/UserScript==

(function() {
    var contentDiv = document.getElementsByTagName("ytd-two-column-browse-results-renderer")[0];
    contentDiv.style.width = '100%';
})();