Greasy Fork is available in English.

Youtube - Wide video container

wide video container on youtube

Fra 18.02.2019. Se den seneste versjonen.

// ==UserScript==
// @name        Youtube - Wide video container
// @namespace   1N07
// @author      1N07
// @description wide video container on youtube
// @include     https://www.youtube.com/*
// @version     1.6
// @grant       none
// ==/UserScript==

if(!!document.getElementById("early-body")) { //if old youtube
    document.getElementById("content").setAttribute("style", "width: 99%;");
} else { //new youtube
	addGlobalStyle(`
		#page-manager > ytd-browse:not([page-subtype="playlist"]) ytd-two-column-browse-results-renderer.ytd-browse, ytd-browse ytd-video-masthead-ad-v3-renderer.ytd-browse {
			width: 99%;
			width: calc(100% - 10px);
			position: relative;
			left: 5px;
		}
	`);
}

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}