Last active
March 2, 2019 19:39
-
-
Save bengrosser/b655525e78e0db311352f160989fcc6f to your computer and use it in GitHub Desktop.
quick and incomplete linkedin demetricator style
This file contains 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
/* | |
linkedin demetricator | |
(incomplete, quick) | |
ben grosser, 2019 | |
to use: | |
- copy the contents of this file onto the clipboard | |
- install something like Stylus for Chrome (https://chrome.google.com/webstore/detail/stylus/clngdbkpkpeebahjckkjfobafhncgmne?hl=en) | |
- visit linkedin | |
- click on the Stylus 'S' extension icon | |
- under 'write style for' click 'linkedin.com' | |
- paste this file into the 'Code 1' box | |
- done | |
notes: | |
this is really not a demetricator as I make them for other platforms | |
just a quick and dirty style sheet that uses brute force to hide chunks of the interface that contain metrics. | |
therefore, you lose accompanying text as well, and other bits that I wouldn't normally remove. | |
useful if you really just want some numbers gone | |
*/ | |
.feed-shared-social-counts__num-likes span, | |
.feed-shared-likers-modal__likes-count, | |
.feed-identity-module__stat, | |
.pv-top-card-v2-section__link--connections .pv-top-card-v2-section__entity-name, | |
.search-results__total, | |
.nav-item__badge-count, | |
.pv-skill-category-entity__endorsement-count, | |
.pv-accomplishments-block__count, | |
.pv-entity__follower-count, | |
.pv-highlight-entity__primary-text, | |
.pv-dashboard-section__metric-count, | |
.feed-shared-news-module__subtext, | |
.comments-comment-social-bar__likes-count span, | |
.mn-invitations-preview__header h3, | |
.mn-community-summary__link h3, | |
.member-insights__reason, | |
.nt-social-counts__count, | |
.pv-recent-activity-top-card__follower-count | |
{ | |
opacity:0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment