Hide Unwanted 9to5Mac Content

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

16.05.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         Hide Unwanted 9to5Mac Content
// @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.20250516144412
// @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/"])

{
  display: none !important;
}


      /* Hide articles by Sponsored Post author */
      article.article:has(.author__link a[href*="/author/sponsoredpostz/"]) {
          display: none !important;
      }

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

      /* Hide sidebars */
      aside.sidebar {
          display: none !important;
      }

      /* Hide branded RSS widgets like 9to5Google */
      .widget.ninetofive-branded-rss {
          display: none !important;
      }
  `;
  document.head.appendChild(style);
})();