京東雙十一紅包插件2019是一款京東全民養(yǎng)紅包搶1億現(xiàn)金紅包油猴插件,雙十一自動做任務(wù):逛商品,逛店鋪,好玩互動,視頻直播,精彩會場,一勞永逸。祝大家有個愉快的雙十一。
使用說明
使用插件前請?zhí)崆暗卿浘〇|
http://www.jd.com
登錄完了之后打開養(yǎng)紅包活動地址:
https://happy.m.jd.com/babelDiy/GZWVJFLMXBQVEBDQZWMY/XJf8bH6oXDWSgS91daDJzXh9bU7/index.html
腳本自動執(zhí)行。做完任務(wù)后關(guān)閉頁面就可以了。
做完任務(wù),可以打開手機(jī)京東首頁,或者其他地方,進(jìn)入養(yǎng)紅包查看任務(wù)結(jié)果。
一些朋友可能是剛接觸油猴,可能不知道如何運(yùn)行,首先要安裝好瀏覽器的油猴插件,具體可以搜索,然后再在油猴里面裝本插件就可以了。
運(yùn)行成功會有黑色彈窗,具體效果請看截圖一。
關(guān)于手機(jī)版運(yùn)行的問題,目前安卓手機(jī)經(jīng)過一些群友(@Misorry)的實(shí)踐證明是可以在手機(jī)用的。iOS版本的正在尋找方案,有待更新。
關(guān)于群友反應(yīng)的要跳轉(zhuǎn)app的問題,實(shí)際上打開這個鏈接就可以了,不用跳轉(zhuǎn)app的,不排除官方出限制,如果提示跳轉(zhuǎn)app,請用電腦瀏覽器按照上面的方式來運(yùn)行本插件。
關(guān)于群友反應(yīng)的淘寶活動的自動腳本,本人正在研究開發(fā),盡可能利用下班的時間去實(shí)現(xiàn)出來,因?yàn)樘詫毣顒訌?fù)雜龐大,規(guī)則比較多,更新快,會要比較長的時間,有可能做出來雙十一已經(jīng)到了。但是本人還是會去嘗試的。有興趣的朋友可以持續(xù)關(guān)注。
PS:感謝各位幫忙測試兼容性問題。
插件代碼
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(`獲取到任務(wù),商品:${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(`商品總?cè)蝿?wù)數(shù):${leng} 當(dāng)前任務(wù)數(shù):${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(`商鋪總?cè)蝿?wù)數(shù):${leng} 當(dāng)前任務(wù)數(shù):${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} 當(dāng)前任務(wù)數(shù):${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} 當(dāng)前任務(wù)數(shù):${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} 當(dāng)前任務(wù)數(shù):${index + 1}`);
},
index*1000)
})(i)
}
}