Skip to content

Instantly share code, notes, and snippets.

@SeanMcP
Last active May 10, 2022 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeanMcP/a0d7f36a830eedb87221c7122438937a to your computer and use it in GitHub Desktop.
Save SeanMcP/a0d7f36a830eedb87221c7122438937a to your computer and use it in GitHub Desktop.
Changes to improve my experience on LinkedIn
// ==UserScript==
// @name LinkedIn Tweaks
// @namespace https://seanmcp.com
// @version 0.1.2
// @description Changes to improve my experience on LinkedIn
// @author SeanMcP
// @match https://www.linkedin.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=linkedin.com
// @grant none
// ==/UserScript==
(function () {
const style = document.createElement('style')
style.innerText = `
/* STYLES ADDED BY USERSCRIPT */
a.global-nav__primary-link[href*="/feed/"],
#voyager-feed {
display: none !important;
}
`
document.head.appendChild(style)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment