Last active
May 10, 2022 17:31
-
-
Save SeanMcP/a0d7f36a830eedb87221c7122438937a to your computer and use it in GitHub Desktop.
Changes to improve my experience on LinkedIn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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