Hide Tesla/Musk/Green Deals & Featured Section

Hide any article (standard or featured) tagged Tesla, Elon Musk, or Green Deals, and remove the Featured carousel section

Version vom 24.04.2025. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Hide Tesla/Musk/Green Deals & Featured Section
// @description  Hide any article (standard or featured) tagged Tesla, Elon Musk, or Green Deals, and remove the Featured carousel section
// @match        https://electrek.co/*
// @version 0.0.1.20250424083126
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
    const style = document.createElement('style');
    style.textContent = `
        /* Hide any <article> (standard or featured) tagged Tesla, Elon Musk, or Green Deals */
        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/"]) {
            display: none !important;
        }

        /* Remove the entire Featured section (container with an <h2 attr-title="Featured">) */
        div.container.xs:has(> h2[attr-title="Featured"]) {
            display: none !important;
        }
    `;
    document.head.appendChild(style);
})();