双十一优惠券 一次性全部领取

一次领光天猫双11所有优惠卷

一次领光天猫双11所有优惠卷

一次领光天猫双11所有优惠卷

重要的要说三次!!!

方法:
首先进入活动页面 http://www.tmall.com/wow/act/14931/1111 并且登录成功你的帐号!
随便找个地方点击鼠标右键审查元素

图片
然后点击console, 把下面代码复制到指定位置, 最后回车.

图片

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(function(window, document, undefined) {
var interval = 800;
var closeDelay = 200;
var index = 0;
var couponLinks;
var getCoupon = function() {
if (index >= couponLinks.length) {
console.log("领取完毕");
console.log("http://veevv.com/");
return;
}
var coponLink = couponLinks[index];
coponLink.click(); index++;
console.log("领取 第" + index + " 张");
setTimeout(getCoupon, interval);
setTimeout(function() {
var close = document.querySelector('.mui-dialog-close');
if (close != null) close.click();
}, closeDelay);
}
var _scrollTop = 0;
var _scrollStep = document.documentElement.clientHeight;
var _maxScrollTop = document.body.clientHeight - document.documentElement.clientHeight;
var autoScrollDown = setInterval(function() {
_scrollTop += _scrollStep;
if (_scrollTop > _maxScrollTop) {
clearInterval(autoScrollDown);
couponLinks = document.querySelectorAll('.mui-act-item-yhqbtn');
console.log("总共:" + couponLinks.length + "条张优惠券待领取...");
getCoupon();
} else {
document.body.scrollTop = _scrollTop;
}
}, 500);
}) (window, document);

执行完毕后的效果是这样滴.

图片

文章目录
  1. 1. 一次领光天猫双11所有优惠卷
  2. 2. 一次领光天猫双11所有优惠卷
  3. 3. 一次领光天猫双11所有优惠卷
    1. 3.1. 重要的要说三次!!!
,