Skip to content

Instantly share code, notes, and snippets.

@midwire
Last active June 1, 2016 14:44
Show Gist options
  • Save midwire/37accf6e2b7d8e6da199 to your computer and use it in GitHub Desktop.
Save midwire/37accf6e2b7d8e6da199 to your computer and use it in GitHub Desktop.
Remove the extremely annoying prompt to update your profile on Linkedin.
// ==UserScript==
// @name Fix_Linkedin
// @namespace linkedin.com
// @description Remove the extremely annoying prompt to update your profile.
// @include https://*.linkedin.com/*
// @include http://*.linkedin.com/*
// @version 0.0.5
// @grant GM_addStyle
// ==/UserScript==
// Remove the annoying 'What did you do in college' prompts
GM_addStyle('#guided-edit-promo { display: none !important; }');
// Also remove the Pulse news articles in your feed...
GM_addStyle('.linkedin-recommend-pulse { display: none !important; }');
GM_addStyle('.pulse-recommend-article-rollup { display: none !important; }');
// Remove the "Reconnect with your colleagues." Facepile promo.
GM_addStyle('.abook-promo { display: none !important; }');
GM_addStyle('#hp-promo-abk-social { display: none !important; }');
// Remove the prompts for Language and Volunteering Experience
// ...and other recommendations
GM_addStyle('.recommended-sections-container { display: none !important; }');
// Remove the obnoxious global-alert warning about cookies
GM_addStyle('#global-alert-queue { display: none !important; }');
@midwire
Copy link
Author

midwire commented Jan 2, 2015

The comments say 'remove' but technically this script just 'hides' those things.

@scbrownell
Copy link

This is so awesome! Thank you!!

@midwire
Copy link
Author

midwire commented Jun 1, 2016

@scbrownell, glad it helped. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment