Greasy Fork is available in English.

YouTube - prev and next buttons remover

remove prev and next buttons

// ==UserScript==
// @name         YouTube - prev and next buttons remover
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  remove prev and next buttons
// @author       You
// @match        https://www.youtube.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant        none
 // @license     GPL
// ==/UserScript==

(() => {
    'use strict';
    [
        '.ytp-prev-button',
        '.ytp-next-button'
    ].map(v => document.querySelectorAll(v)).forEach(v => v?.forEach(v => {
        v.hidden = true;
    }));
})();