Cleanup Electrek: Hide Unwanted Content

Hide articles tagged Tesla, Elon Musk, or Green Deals; remove Featured carousel; strip sidebars

As of 2025-04-24. See the latest version.

// ==UserScript==
// @name         Cleanup Electrek: Hide Unwanted Content
// @description  Hide articles tagged Tesla, Elon Musk, or Green Deals; remove Featured carousel; strip sidebars
// @match        https://electrek.co/*
// @version 0.0.1.20250424082716
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
    const style = document.createElement('style');
    style.textContent = `
        /* 1. 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;
        }

        /* 2. Remove the entire Featured section (carousel under the "Featured" heading) */
        div.container.xs:has(> h2[attr-title="Featured"]) {
            display: none !important;
        }

        /* 3. Remove sidebar panels and widgets */
        aside.sidebar,
        aside.home-poll,
        div.widget.ninetofive-branded-rss {
            display: none !important;
        }
    `;
    document.head.appendChild(style);
})();