Skip to content

Instantly share code, notes, and snippets.

@marclove
Last active February 21, 2025 21:04
Show Gist options
  • Save marclove/ca74aae35ce85edc8e806a842be0dd4e to your computer and use it in GitHub Desktop.
Save marclove/ca74aae35ce85edc8e806a842be0dd4e to your computer and use it in GitHub Desktop.
LinkedIn QoL Userscripts

Hide Ads On LinkedIn

  1. Add a userscripts browser extension like Tampermonkey or Greasemonkey.
  2. Install each of these scripts as a user script.

If you want to improve performance, you could merge these into a single function and observer, but the performance has been fine for me and this gives you flexibility on what aspects you want to hide.

// ==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 });
})();
// ==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 });
})();
// ==UserScript==
// @name Hide Promoted Posts
// @namespace https://marclove.com/
// @version 2025-02-10
// @description Hide divs containing promoted posts in scaffold-finite-scroll__content
// @author Marc Love
// @match https://www.linkedin.com/feed/
// @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com
// @grant none
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
function hidePromotedPosts() {
document.querySelectorAll('.scaffold-finite-scroll__content > div').forEach(parentDiv => {
const actorContainer = parentDiv.querySelector('.update-components-actor__container');
if (actorContainer && actorContainer.innerText.includes("Promoted")) {
parentDiv.style.display = 'none';
}
});
}
// Run initially
hidePromotedPosts();
// Observe DOM changes in case content is loaded dynamically
const observer = new MutationObserver(hidePromotedPosts);
observer.observe(document.body, { childList: true, subtree: true });
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment