Hide Tesla/Elon Musk/Green Deals articles, the Featured section, and all sidebars (including the 9to5Google widget)
当前为
// ==UserScript==
// @name Hide Unwanted Electrek Content
// @description Hide Tesla/Elon Musk/Green Deals articles, the Featured section, and all sidebars (including the 9to5Google widget)
// @match https://electrek.co/*
// @version 0.0.1.20250424083300
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function() {
const style = document.createElement('style');
style.textContent = `
/* Hide articles 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/"]),
/* Hide the Featured carousel section */
div.container.xs:has(> h2[attr-title="Featured"]),
/* Hide any sidebar region */
aside.sidebar,
/* Hide the branded-RSS widget (e.g. 9to5Google) */
.widget.ninetofive-branded-rss {
display: none !important;
}
`;
document.head.appendChild(style);
})();