中尉
- 注册时间
- 2013-4-13
- 金币
- 283 个
- 威望
- 6 个
- 荣誉
- 1 个
累计签到:84 天 连续签到:0 天 [LV.100]试剑无线
|
先点击进入活动页面
要求用谷歌内核的浏览器. 活动页面按F12键进Console 或者右键选择审查元素,点击Console
复制下面代码在空白处后按回车,即可自动领光所有优惠券.活动页面分多类,领完一类换另一类重复上面的操作.
(function(window, document, undefined) {
var interval = 800;
var closeDelay = 200;
var index = 0;
var couponLinks;
var getCoupon = function() {
if (index >= couponLinks.length) {
console.log("领取完毕");
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);
|
|