// ==UserScript== // @name Episode name hider // @namespace https://github.com/yoku-nai-desu/ // @version 0.1 // @license WTFPL // @description a simple script to hide names of episodes on 9anime/aniwave // @author Alireza Rezaei(yoku-nai-desu) // @match https://aniwave.to/watch/* // @match https://9animetv.to/watch/* // @match https://9anime.com.pl/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Select all elements with class "d-title" and data attribute "data-jp" // tryin to only select the title , nothing more var spans = document.querySelectorAll('span.d-title[data-jp]'); // Iterate through each span element spans.forEach(function(span) { // Replace the text content of each span element span.textContent = 'Hidden'; }); })();