Hide Some Ads

Hide some ads on online-fix.me

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Hide Some Ads
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  Hide some ads on online-fix.me
// @match        https://online-fix.me/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    function hideAds() {
        let adElements = document.querySelectorAll('.no-pop');
        adElements.forEach(element => {
            element.style.display = 'none';
        });

        let adBlockElement = document.querySelector('#dle-content > div > article > div.full-story-header.wide-block.clr');
        if (adBlockElement) {
            let childNodes = adBlockElement.childNodes;
            for (let node of childNodes) {
                if (node.nodeType === Node.TEXT_NODE && node.textContent.trim().includes("РЕКЛАМНЫЙ БЛОК:")) {
                    node.textContent = '';
                    break;
                }
            }
        }

        let sidebarBlocks = document.querySelectorAll('.sidebar-block');
        sidebarBlocks.forEach(block => {
            if (block.textContent.includes("Если Вы хотите поддержать проект") ||
                block.textContent.includes("If you want to support the project")) {
                block.style.display = 'none';
            }
        });

        let adPlayerElements = document.querySelectorAll('div[data-ad-player]');
        adPlayerElements.forEach(element => {
            element.style.display = 'none';
        });


        let articleElement = document.querySelector('div.article.fixed.clr');
        if (articleElement) {
            let parentArticle = articleElement.closest('article');
            if (parentArticle) {
                parentArticle.style.display = 'none';
            }
        }
    }

    hideAds();

    let observer = new MutationObserver(mutations => {
        for (let mutation of mutations) {
            if (mutation.type === 'childList') {
                hideAds();
            }
        }
    });
    observer.observe(document.body, {childList: true, subtree: true});
})();