Hide YouTube Propaganda Box

Hide the propaganda box on YouTube videos and remove clarify box

// ==UserScript==
// @name         Hide YouTube Propaganda Box
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  Hide the propaganda box on YouTube videos and remove clarify box
// @author       Free Your Mind Enterprises Inc.
// @match        https://www.youtube.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Function to hide the propaganda box
    function hidePropagandaBox() {
        const propagandaBox = document.querySelector('.ytd-info-panel-content-renderer');
        if (propagandaBox) {
            propagandaBox.style.display = 'none';
        }

        const clarifyBox = document.getElementById('clarify-box');
        if (clarifyBox) {
            clarifyBox.remove();
        }
    }

    // Hide the box on page load
    window.addEventListener('load', hidePropagandaBox);

    // Hide the box on dynamic content changes
    const observer = new MutationObserver(hidePropagandaBox);
    observer.observe(document.body, { childList: true, subtree: true });
})();