Hello friends, I'm not sure if I posted this in the right place, so please let me know, and I will delete or move it if necessary. Thank you in advance. On Twitter, I am able to automatically favorite tweets using the code below from the Chrome Console. I would like to do the same for retweets, but I have been trying for 2 hours and couldn't find a way to do it. How can I achieve this? AUTO favorite code: setInterval(function(){ var tweet = $("div[data-testid='like']:not(.like_not)").length; if (tweet > 0) { $("div[data-testid='like']").first().click(); } },1000);