Greasy Fork is available in English.

Remove Breadcrumb Element

Removes specified breadcrumb element from the page

// ==UserScript==
// @name         Remove Breadcrumb Element
// @namespace    your-namespace
// @version      1.0
// @description  Removes specified breadcrumb element from the page
// @match       https://cydmyz.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const breadcrumb = document.querySelector('.article-crumb');
    
    // remove breadcrumb ol element
    breadcrumb.removeChild(document.querySelector('.breadcrumb'));
})();