Remove YouTube Channel Video AutoPlay

RemoveYouTubeChannelVideoAutoPlay

As of 2019-10-23. See the latest version.

// ==UserScript==
// @name        Remove YouTube Channel Video AutoPlay
// @namespace   RemoveYouTubeChannelVideoAutoPlay
// @description RemoveYouTubeChannelVideoAutoPlay
// @version     1.0
// @author      Yousif
// @match       https://www.youtube.com/*
// @grant       none
// @run-at      document-end
// ==/UserScript==

function fix_youtube() {
    let del = document.querySelectorAll(".c4-player-container.c4-flexible-player-container")
    del[0].remove()
}
fix_youtube()