// ==UserScript== // @name Hide LinkedIn Advertisements // @namespace https://marclove.com/ // @version 2025-02-10 // @description Hide ads in right column // @author Marc Love // @match https://www.linkedin.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com // @grant none // ==/UserScript== (function() { 'use strict'; function hideAds() { document.querySelectorAll('section.ad-banner-container').forEach(adDiv => { adDiv.style.display = 'none'; }); } // Run initially hideAds(); // Observe DOM changes in case content is loaded dynamically const observer = new MutationObserver(hideAds); observer.observe(document.body, { childList: true, subtree: true }); })();