Last active
July 11, 2021 15:23
-
-
Save chengyin/7021086 to your computer and use it in GitHub Desktop.
Unsubscribe all LinkedIn email in "one click". For an easier to use version, you can check out the bookmarklet: http://chengyin.github.io/linkedin-unsubscribed/
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
// 1. Go to page https://www.linkedin.com/settings/email-frequency | |
// 2. You may need to login | |
// 3. Open JS console | |
// ([How to?](http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers)) | |
// 4. Copy the following code in and execute | |
// 5. No more emails | |
// | |
// Bookmarklet version: | |
// http://chengyin.github.io/linkedin-unsubscribed/ | |
$('.settings li select:has(option[value=never])').val('never'); | |
$('.settings li select:has(option[value=WEB])').val('WEB'); | |
$('.settings li select:has(option[value=NEVER])').val('NEVER'); | |
$('.settings li select:has(option[value=NONE])').val('NONE'); | |
$('.settings li select:has(option[value=false])').val('false'); | |
$('input[type=submit]').prop('disabled', false).click(); |
+1
Thanks!
+1
Nicely done. Handy.
You just changed my life; thank you very much
🍺
👍
Rename this to LinkedOut.
@miguelrochefort done. brilliant.
👍 Linkedin should have added an easier way to do this!
Brilliant. Thank you.
Accepted Invitations doesn't take the setting for some reason, even though it should be covered since it uses the EMAIL
/WEB
enumeration.
@skyebook as far as I can see it is a bug/feature of theirs.
+1
🍺
thanks
You're my hero.
🍻
chengyin knows about JS Console!
"You may need to login" --> You may need to log in. (Login is a noun, log in is a verb.)
Amazing... Thanks!!!
Thanks
My inbox sends you ❤️ and a 🍪.
+1
<3
+1!
awesome
👍
Just tried it... Nice! I was sick of those LinkedIn emails.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sweet! Thanks!