🏠 Home 

Greasy Fork is available in English.

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 });
})();