/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
/中文/
京东双十一红包插件2019是一款京东全民养红包抢1亿现金红包油猴插件,双十一自动做任务:逛商品,逛店铺,好玩互动,视频直播,精彩会场,一劳永逸。花最小的代价获得最高的实惠,希望大家双十一都能满载而归!
使用插件前请提前登录京东:
http://www.jd.com
登录完了之后打开养红包活动地址:
https://happy.m.jd.com/babelDiy/GZWVJFLMXBQVEBDQZWMY/XJf8bH6oXDWSgS91daDJzXh9bU7/index.html
脚本自动执行,做完任务后关闭页面就可以了。
做完任务,可以打开手机京东首页,或者其他地方,进入养红包查看任务结果。
一些朋友可能是刚接触油猴,可能不知道如何运行,首先要安装好浏览器的油猴插件,具体可以搜索:tampermonk,然后再在油猴里面装本插件就可以了。
关于手机版运行的问题,目前安卓手机经过一些群友的实践证明是可以在手机用的。
关于群友反应的要跳转app的问题,实际上打开这个链接就可以了,不用跳转app的,不排除官方出限制,如果提示跳转app,请用电脑浏览器按照上面的方式来运行本插件。
祝大家有个愉快的双十一,插件在底部。
let productList = [], shopList = [], url = "https://api.m.jd.com/client.action";
function autoPost(id,type){
fetch(`${url}?timestamp=${new Date().getTime()}`,{method: "POST",mode: "cors",credentials: "include",headers:{"Content-Type": "application/x-www-form-urlencoded"},body:`functionId=raisepacket_collectScore&body={"type":${type},"ext":"${id}","appsign":1,"msgsign":2}&client=wh5`})
.then(function(response){return response.json()})
.then(function(res){
Toast(res.data.biz_msg);
});
}
function start(){
fetch(`${url}?${new Date().getTime()}`,{method: "POST",mode: "cors",credentials: "include",headers:{"Content-Type": "application/x-www-form-urlencoded"},body:'functionId=raisepacket_getShopAndProductList&body=&client=wh5'})
.then(function(response){return response.json()})
.then(function(res){
productList = res.data.result.productList;
shopList = res.data.result.shopList;
Toast(`获取到任务,商品:${productList.length} 商品:${shopList.length}`);
autoProductTask();
});
}
//逛商品
function autoProductTask(){
for(let i = 0,leng = productList.length;i<leng;i++){
(function(index){
setTimeout(()=>{
let item = productList[index];
autoPost(item['id'],4);
Toast(`商品总任务数:${leng} 当前任务数:${index + 1}`);
if( leng-1 == index){
autoShopTask();
}
},index*1500)
})(i)
}
}
//逛店铺
function autoShopTask(){
for(let i = 0,leng = shopList.length;i<leng;i++){
(function(index){
setTimeout(()=>{
let item = shopList[index];
autoPost(item['id'],2);
Toast(`商铺总任务数:${leng} 当前任务数:${index + 1}`);
if( leng-1 == index){
autoPlay();
}
},index*1500)
})(i)
}
}
//好玩互动
function autoPlay(){
for(let i = 0,leng = 4;i<leng;i++){
(function(index){
setTimeout(()=>{
autoPost(0,5);
Toast(`好玩互动:${leng} 当前任务数:${index + 1}`);
if( leng-1 == index){
autoInteract();
}
},index*1000)
})(i)
}
}
//视频直播
function autoInteract(){
for(let i = 0,leng = 4;i<leng;i++){
(function(index){
setTimeout(()=>{
autoPost(0,10);
Toast(`视频直播:${leng} 当前任务数:${index + 1}`);
if( leng-1 == index){
autoShopping();
}
},index*1000)
})(i)
}
}
//精彩会场
function autoShopping(){
for(let i = 0,leng = 3;i<leng;i++){
(function(index){
setTimeout(()=>{
autoPost(0,3);
Toast(`精彩会场:${leng} 当前任务数:${index + 1}`);
},
index*1000)
})(i)
}
}