NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name YoutubeChannelPlayAll
// @namespace https://youtube.com/
// @version 0.1
// @description Adds Play All button to Youtube Channel Video Pages
// @author nascent
// @include https://www.youtube.com/c/*/videos
// @include https://www.youtube.com/channel/*/videos
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @updateURL https://openuserjs.org/meta/nascent/YoutubeChannelPlayAll.meta.js
// @downloadURL https://openuserjs.org/install/nascent/YoutubeChannelPlayAll.user.js
// @grant none
// @license GPL-3.0-or-later
// ==/UserScript==
(function() {
'use strict';
document.location.href = document.location.href + "?view=57";
})();