Greasy Fork is available in English.

MyAnimeList(MAL) - Remove all watch video/pv icons

This script will remove any watch icon on myanimelist

// ==UserScript==
// @name         MyAnimeList(MAL) - Remove all watch video/pv icons
// @version      1.0.5
// @description  This script will remove any watch icon on myanimelist
// @author       Cpt_mathix
// @license      GPL-2.0-or-later
// @match        *://myanimelist.net/*
// @grant        none
// @namespace https://greasyfork.org/users/16080
// ==/UserScript==

(function() {
	var icons = document.querySelectorAll(".icon-watch, .icon-watch2, .icon-watch-pv, .icon-watch-pv2, .prodsrc > .video > a");
	for (var i = icons.length - 1; i >= 0; i--) {
		var icon = icons[i];
		icon.parentNode.removeChild(icon);
	}
})();