There are 2 previous versions of this script.

// ==UserScript==
// @id             YoutubeOldDesign@Lunatrius
// @name           Youtube Switch Back To Old Design
// @version        1.1
// @namespace      Lunatrius
// @author         Lunatrius <lunatrius@gmail.com>
// @description    Switch back to the old youtube page!
// @include        http://www.youtube.com/
// @include        https://www.youtube.com/
// @run-at         document-end
// ==/UserScript==

(function() {
	if(/youtube.com/i.test(location.host)) {
		var cookie = "VISITOR_INFO1_LIVE=tYJElFX0sZI";
		if(document.cookie.search(cookie) == -1) {
			cookie += "; expires=" + (new Date(2020, 1, 1)).toGMTString();
			cookie += "; domain=.youtube.com";
			document.cookie = cookie;
			location.reload();
		}
	}
})()