快速退出豆瓣小组

不知道什么情况豆瓣帐号泄漏出去了,无端加了很多小组,接近100个吧,一个一个退出太慢了,所以写了下面这段代码,在Chrome里面登录豆瓣,打开个人加入的小组页,地址大概是这样的: https://www.douban.com/group/...你的豆瓣ID/joins
快速退出豆瓣小组_第1张图片

按下F12打开开发者工具,招到Console,输入下面的代码并回车:

var style = document.createElement("style");
var styles = ".group-list li{cursor: pointer;} .group-list li:hover{background: gray;} .group-list li.cur{background-color: #FF3300; color:#FFFFFF }";
style.appendChild(document.createTextNode(styles));
(document.getElementsByTagName("head")[0] || document.body).appendChild(style);

$(".group-list li").click(function(e){
    $(this).toggleClass('cur')
    var url = $(this).find('.info a').attr("href")+"?action=quit&ck="+get_cookie('ck');
    $(this).slideUp(400);
    e.preventDefault();
    e.stopPropagation();
    $.get(url,function(r){});
    return false;
});

然后一个一个去点你想退出的小组吧。。。为了防止被豆瓣识别成机器人,不能点的太快了,两三秒一个就差不多了。。。

你可能感兴趣的:(豆瓣)