9to5Mac css

Hide articles with podcast/deals tags, Sponsored Post author, the Featured section, all sidebars, and branded widgets

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

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.

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

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

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         9to5Mac css
// @description  Hide articles with podcast/deals tags, Sponsored Post author, the Featured section, all sidebars, and branded widgets
// @match        https://9to5mac.com/*
// @version 0.0.1.20251104023041
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
  const style = document.createElement('style');
  style.textContent = `

    /* Hide articles with specific guide tags */
    article.article:has(ul.article__meta-guides a[href*="/9to5mac-daily/"]),
    article.article:has(ul.article__meta-guides a[href*="/apple-work-podcast/"]),
    article.article:has(ul.article__meta-guides a[href*="/deals/"]),
    article.article:has(ul.article__meta-guides a[href*="/apple-at-work/"]),
    article.article:has(ul.article__meta-guides a[href*="/podcast/"]),
    article.article:has(ul.article__meta-guides a[href*="/9to5mac-happy-hour/"]),
    article.article:has(ul.article__meta-guides a[href*="/rumor-replay/"]),
    article.article:has(ul.article__meta-guides a[href*="/9to5mac-overtime/"]),
    article.article:has(ul.article__meta-guides a[href*="/ipad-accessories/"]),
    article.article:has(ul.article__meta-guides a[href*="/indie-app-spotlight/"]),
    article.article:has(ul.article__meta-guides a[href*="/magsafe-monday/"]),
    article.article:has(ul.article__meta-guides a[href*="/guides/opinion/"]),
    article.article:has(ul.article__meta-guides a[href*="/apple-fitness/"]),
    article.article:has(ul.article__meta-guides a[href*="/homekit-weekly/"]),
    article.article:has(ul.article__meta-guides a[href*="/security-bite/"]),
    article.article:has(ul.article__meta-guides a[href*="/adobe/"]),
    article:has(> figure > a > img[alt="9to5mac daily podcast"]),
    article.article:has(.author__link a[href*="/author/sponsoredpostz/"]),
    div.container.xs:has(> h2[attr-title="Featured"]),
    aside.sidebar,
    .widget.ninetofive-branded-rss,
    div.author-affiliate-ad-wrapper {
      display: none !important;
    }

    `;
  document.head.appendChild(style);
})();