YouTube Uploader Videos Channel Playlist

Creates playlist link of all videos from an uploader's channel (using page load trick)

  1. // ==UserScript==
  2. // @name YouTube Uploader Videos Channel Playlist
  3. // @namespace https://greasyfork.org/en/users/10118-drhouse
  4. // @version 1.2
  5. // @description Creates playlist link of all videos from an uploader's channel (using page load trick)
  6. // @include https://www.youtube.com/user/*/videos
  7. // @include https://www.youtube.com/c/*/videos
  8. // @require http://code.jquery.com/jquery-3.4.1.min.js
  9. // @require https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.18.2/babel.js
  10. // @require https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.16.0/polyfill.js
  11. // @author drhouse
  12. // @grant GM_registerMenuCommand
  13. // @license CC-BY-NC-SA-4.0
  14. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  15. // ==/UserScript==
  16. this.$ = this.jQuery = jQuery.noConflict(true);
  17. (function($){
  18. var theurl = document.URL;
  19.  
  20. function uploader(){
  21. window.location.href = (theurl + "?view=57")
  22. }
  23.  
  24. GM_registerMenuCommand ("Uploader Playlist", uploader, "u");
  25.  
  26. })(jQuery);