Greasy Fork is available in English.

Cleanup Electrek: Hide Unwanted Content

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

24.04.2025 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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