// ==UserScript== // @name Hide Lynda Courses on LinkedIn // @namespace https://marclove.com/ // @version 2025-02-10 // @description Hide divs containing promotions for Lynda courses // @author Marc Love // @match https://www.linkedin.com/feed/ // @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com // @grant none // ==/UserScript== (function() { 'use strict'; function hideMatchingDivs() { document.querySelectorAll('div').forEach(parentDiv => { if (parentDiv.querySelector('div[data-id^="urn:li:lyndaCourse:"]')) { parentDiv.style.display = 'none'; } }); } // Run initially hideMatchingDivs(); // Observe DOM changes in case content is loaded dynamically const observer = new MutationObserver(hideMatchingDivs); observer.observe(document.body, { childList: true, subtree: true }); })();