我想在我的Chrome浏览器中启动一个脚本,允许我取消关注我的Twitter帐户中的人。我有以下脚本,但不幸的是它不起作用:
$('.ProfileCard-content').each(function() {
var status = $(this).find('.FollowStatus').text();
var unfollowButton = $(this).find('.useractions-follow-button');
if (status != 'follows you') {
unfollowButton.click();
}
});