Mp4Hydra Remove Ads / No Adverts

Remove the ads from mp4hydra.org

Встановити цей скрипт?
Скрипт запропонований Автором

Вам також може сподобатись Mp4Hydra Movie/Video Downloader.

Встановити цей скрипт
// ==UserScript==
// @name        Mp4Hydra Remove Ads / No Adverts
// @namespace   https://greasyfork.org/
// @version     1.01
// @description Remove the ads from mp4hydra.org
// @author      paleocode
// @match       https://mp4hydra.org/*
// @icon        https://mp4hydra.org/favicon-32x32.png
// @license     MIT
// @run-at      document-start
// @unwrap
// ==/UserScript==
(function () {
    new MutationObserver((_, observer) => {
        const jqueryScriptTag = document.querySelector('div.lower');
        if (jqueryScriptTag) {
            jqueryScriptTag.remove();
            observer.disconnect();
        }
    }).observe(document.documentElement, { childList: true, subtree: true });

    new MutationObserver((_, observer) => {
        const jqueryScriptTag = document.querySelector('div.upper');
        if (jqueryScriptTag) {
            jqueryScriptTag.remove();
            observer.disconnect();
        }
    }).observe(document.documentElement, { childList: true, subtree: true });
})();