// ==UserScript== // @name Hide Tesla/Musk via CSS // @description a // @match https://electrek.co/* // @version 0.0.1.20250424075713 // @namespace https://greasyfork.org/users/1435046 // @downloadURL none // ==/UserScript== (function() { var style = document.createElement('style'); style.textContent = ` article.article.standard:has(ul.article__meta-guides a[href*="/tesla/"]), article.article.standard:has(ul.article__meta-guides a[href*="/elon-musk/"]) { display: none !important; } `; document.head.appendChild(style); })();