Greasy Fork

Episode name hider

a simple script to hide names of episodes on 9anime/aniwave

目前为 2024-05-26 提交的版本。查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';

    // Select all <span> 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';
    });
})();