Unsubscribe from all LinkedIn email in one click
gist.github.com
Unsubscribe from all LinkedIn email in one click
1–10 of 70 posts
Re: Unsubscribe from all LinkedIn email in one click
#2Re: Unsubscribe from all LinkedIn email in one click
#3cool idea. Can this be done for many sites? like macros that take advantage of the site's own JS.
Re: Unsubscribe from all LinkedIn email in one click
#4cool idea. Can this be done for many sites? like macros that take advantage of the site's own JS.
$.each($(".down.arrow"), function(index, vote){ $(vote).click(); });
Re: Unsubscribe from all LinkedIn email in one click
#5cool idea. Can this be done for many sites? like macros that take advantage of the site's own JS.
Typically. For example, on reddit you can run this in console to downvote everything on a comment thread: $.each($(".down.arrow"), function(index, vote){ $(vote).click(); });
Re: Unsubscribe from all LinkedIn email in one click
#6Re: Unsubscribe from all LinkedIn email in one click
#7cool idea. Can this be done for many sites? like macros that take advantage of the site's own JS.
I don't think it would be easy to write a global one for every site, but I think it would be cool to make a community-driven unsubscribe script collection.
The potential for scripts that did very bad things is immense, especially given how easily you can massively obfuscate JavaScript code.
Re: Unsubscribe from all LinkedIn email in one click
#8Re: Unsubscribe from all LinkedIn email in one click
#9Earlier quoted context omitted.
Typically. For example, on reddit you can run this in console to downvote everything on a comment thread: $.each($(".down.arrow"), function(index, vote){ $(vote).click(); });
Just curious, is there any reason you used `$.each` instead of `$(".down.arrow").each`?
Re: Unsubscribe from all LinkedIn email in one click
#10cool idea. Can this be done for many sites? like macros that take advantage of the site's own JS.
Typically. For example, on reddit you can run this in console to downvote everything on a comment thread: $.each($(".down.arrow"), function(index, vote){ $(vote).click(); });