NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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%';
})();