Greasy Fork is available in English.

Remove Skip to next video button

Removes the skip to next video button present in media bar

// ==UserScript==
// @name        Remove Skip to next video button 
// @namespace   Violentmonkey Scripts
// @match       https://www.youtube.com/watch*
// @grant       none
// @version     1.0
// @author      jside
// @description Removes the skip to next video button present in media bar 
// ==/UserScript==

let styleSheet = `
.ytp-next-button {
  display: none !important;
}
`;

let s = document.createElement('style');
s.type = "text/css";
s.innerHTML = styleSheet;
(document.head || document.documentElement).appendChild(s);