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

This script will remove any watch icon on myanimelist

目前为 2022-01-08 提交的版本。查看 最新版本

// ==UserScript==
// @name         MyAnimeList(MAL) - Remove all watch video/pv icons
// @version      1.0.4
// @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, .prodsrc > .broadcast");
	for (var i = icons.length - 1; i >= 0; i--) {
		var icon = icons[i];
		icon.parentNode.removeChild(icon);
	}
})();