// ==UserScript== // @name YouTube View More Uploader Videos // @namespace YVMUV // @description See a sleek list of additional videos from the same user that have been uploaded from within your video player. // @version 13.0 // @include http://www.youtube.com/* // @include https://www.youtube.com/* // @author drhouse // @icon https://s.ytimg.com/yts/img/favicon-vfldLzJxy.ico // @downloadURL none // ==/UserScript== $(document).ready(function () { setTimeout(function() { var theurl = document.URL; var links = document.getElementById('content').getElementsByTagName('a'); if (location.href.toString().indexOf("list") == -1 && parent.location.href.toString().indexOf("watch") != -1 && parent.location.href.toString().indexOf("feed") == -1 && parent.location.href.toString().indexOf("watch_") == -1) window.location.href = (theurl + "&list=UL&"); for(var i=0 ; i