Created
February 12, 2025 23:19
-
-
Save rmtbb/9fe70524dcd12238fdcec2e6a645b0d9 to your computer and use it in GitHub Desktop.
Bookmarklet to De-blur LinkedIn Job Recommendations
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
javascript:(function(){document.querySelectorAll('*').forEach(el=>{if(el.classList.contains('blurred-job-card')){el.classList.replace('blurred-job-card','job-card');}});})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
De-blur LinkedIn Job Recommendations
Quick Bookmarklet Solution
LinkedIn uses a blur effect on job recommendations to encourage users to subscribe to LinkedIn Premium. These job postings are selected based on your profile and activity, meaning you could be a good match for them. However, without a premium subscription, LinkedIn hides key details such as the company name and job title.
This tool allows you to remove the blur effect so you can see the recommended jobs without having to pay for LinkedIn Premium.
How to Use the Bookmarklet
BEFORE
AFTER
What This Does
blurred-job-card
.blurred-job-card
withjob-card
, effectively removing the blur effect.Manual Console Method
If you prefer, you can manually enter the script in the Chrome Console:
Steps to Use:
Notes
Disclaimer
This script is provided for educational purposes only. Use it responsibly and in compliance with LinkedIn's terms of service.