Last active
June 1, 2016 14:44
-
-
Save midwire/37accf6e2b7d8e6da199 to your computer and use it in GitHub Desktop.
Remove the extremely annoying prompt to update your profile 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 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; }'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@scbrownell, glad it helped. :)