Electrek css

Hide Tesla/Elon Musk/Green Deals/EV Deals/Sponsored articles, the Featured section, and all sidebars (including the 9to5Google widget)

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

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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         Electrek css
// @description  Hide Tesla/Elon Musk/Green Deals/EV Deals/Sponsored articles, the Featured section, and all sidebars (including the 9to5Google widget)
// @match        https://electrek.co/*
// @version 0.0.1.20251109111818
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
    const style = document.createElement('style');
    style.textContent = `
        /* Hide articles tagged Tesla, Elon Musk, Green Deals, EV Deals, or Sponsored Post */
        article.article:has(ul.article__meta-guides a[href*="/tesla/"]),
        article.article:has(ul.article__meta-guides a[href*="/elon-musk/"]),
        article.article:has(ul.article__meta-guides a[href*="/green-deals/"]),
        article.article:has(ul.article__meta-guides a[href*="/ev-deals/"]),
        article.article:has(ul.article__meta-guides a[href*="/quick-charge/"]),
        article.article:has(ul.article__meta-guides a[href*="/sponsored-post/"]),
        article.article:has(ul.article__meta-guides a[href*="/guides/electrek-podcast/"]),
        article.article:has(ul.article__meta-guides a[href*="/guides/podcast/"]),
        article.article:has(ul.article__meta-guides a[href*="/guides/wheel-e-podcast/"]),
        article.article:has(ul.article__meta-guides a[href*="/guides/opinion/"]),
        article.article:has(ul.article__meta-guides a[href*="/guides/review/"]),
        article.article:has(ul.article__meta-guides a[href*="/guides/ev-lease/"]),
        article.article:has(ul.article__meta-guides a[href*="/guides/survey-sunday/"]),

        /* Hide articles by sponsored post authors */
        article.article:has(.author__link a[href*="/author/sponsoredpostz/"]),

        /* Hide the Featured carousel section */
        div.container.xs:has(> h2[attr-title="Featured"]),
        /* Hide any sidebar region */
        aside.sidebar,
        /* Hide the branded-RSS widget (e.g. 9to5Google) */
        .widget.ninetofive-branded-rss {
            display: none !important;
        }
        `;
    document.head.appendChild(style);
})();