diff --git a/QuantumultX/lxk0301_gallery.json b/QuantumultX/lxk0301_gallery.json index 91f4420d..1db5c159 100644 --- a/QuantumultX/lxk0301_gallery.json +++ b/QuantumultX/lxk0301_gallery.json @@ -32,6 +32,7 @@ "10 7 * * * https://raw.githubusercontent.com/lxk0301/jd_scripts/master/jd_digital_floor.js, tag=数码加购京豆, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_redPacket.png", "0 0,9,11,13,15,17,19,20,21,23 * * * https://raw.githubusercontent.com/lxk0301/jd_scripts/master/jd_live_redrain.js, tag=直播红包雨, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_redPacket.png", "10 0 * * * https://raw.githubusercontent.com/lxk0301/jd_scripts/master/jd_apple_live.js, tag=苹果抽奖机, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_redPacket.png", + "10 1 * * * https://raw.githubusercontent.com/lxk0301/jd_scripts/master/jd_pubg.js, tag=PUBG, img-url=https://raw.githubusercontent.com/58xinian/icon/master/jd_redPacket.png", "15 17 * * * https://raw.githubusercontent.com/lxk0301/jd_scripts/master/backUp/xmSports.js, tag=小米运动, img-url=https://raw.githubusercontent.com/58xinian/icon/master/xmyd.png" ] } diff --git a/docker/crontab_list.sh b/docker/crontab_list.sh index 4c656d93..edde6fd1 100644 --- a/docker/crontab_list.sh +++ b/docker/crontab_list.sh @@ -17,7 +17,11 @@ # 直播红包雨(2020.12.12活动过期) 0 0,9,11,13,15,17,19,20,21,23 * * * node /scripts/jd_live_redrain.js >> /scripts/logs/jd_live_redrain.log 2>&1 # 数码加购京豆(2020.12.11活动过期) - 8 0 * * * node /scripts/jd_digital_floor.js >> /scripts/logs/jd_digital_floor.log 2>&1 +8 0 * * * node /scripts/jd_digital_floor.js >> /scripts/logs/jd_digital_floor.log 2>&1 +# jd_apple_live +8 0,20 * * * node /scripts/jd_apple_live.js >> /scripts/logs/jd_apple_live.log 2>&1 +# jd_pubg +8 1,20 * * * node /scripts/jd_pubg.js >> /scripts/logs/jd_pubg.log 2>&1 ##############长期活动############## # 签到 diff --git a/docker/crontab_list_ts.sh b/docker/crontab_list_ts.sh index b1dd6213..90039c3c 100644 --- a/docker/crontab_list_ts.sh +++ b/docker/crontab_list_ts.sh @@ -18,6 +18,10 @@ 0 0,9,11,13,15,17,19,20,21,23 * * * node /scripts/jd_live_redrain.js |ts >> /scripts/logs/jd_live_redrain.log 2>&1 # 数码加购京豆(2020.12.11活动过期) 8 0 * * * node /scripts/jd_digital_floor.js |ts >> /scripts/logs/jd_digital_floor.log 2>&1 +# jd_apple_live +8 0,20 * * * node /scripts/jd_apple_live.js |ts >> /scripts/logs/jd_apple_live.log 2>&1 +# jd_pubg +8 1,20 * * * node /scripts/jd_pubg.js |ts >> /scripts/logs/jd_pubg.log 2>&1 ##############长期活动############## # 签到 diff --git a/jd_apple_live.js b/jd_apple_live.js index 32ea767f..09081143 100644 --- a/jd_apple_live.js +++ b/jd_apple_live.js @@ -1,5 +1,6 @@ /* 苹果抽奖机 +脚本会给内置的码进行助力 活动于2020-12-14日结束 活动地址:https://h5.m.jd.com/babelDiy/Zeus/2zwQnu4WHRNfqMSdv69UPgpZMnE2/index.html/ 已支持IOS双京东账号,Node.js支持N个京东账号 @@ -37,7 +38,7 @@ if ($.isNode()) { cookiesArr.push(...[$.getdata('CookieJD'), $.getdata('CookieJD2')]); } const JD_API_HOST = 'https://api.m.jd.com/client.action'; -const inviteCodes = [`P04z54XCjVUm4aW5nJcXCCyoR8C6s-kRmWs@P04z54XCjVUm4aW5m9cZ2bx3y5Ow`, `P04z54XCjVUm4aW5nJcXCCyoR8C6s-kRmWs@P04z54XCjVUm4aW5m9cZ2bx3y5Ow`]; +const inviteCodes = [`P04z54XCjVUm4aW5nJcXCCyoR8C6s-kRmWs@P04z54XCjVUm4aW5m9cZ2bx3y5Ow@P04z54XCjVUm4aW5u2ak7ZCdan1BeYMuZ9HwF34gJjW@P04z54XCjVUm4aW5m9cZ2T6jChKkkjZEdhiKUY`, `P04z54XCjVUm4aW5nJcXCCyoR8C6s-kRmWs@P04z54XCjVUm4aW5m9cZ2bx3y5Ow`]; !(async () => { await requireConfig(); if (!cookiesArr[0]) { diff --git a/jd_digital_floor.js b/jd_digital_floor.js index 87639008..4d518ee8 100644 --- a/jd_digital_floor.js +++ b/jd_digital_floor.js @@ -1,5 +1,6 @@ /* 数码加购京豆 +脚本会给内置的码进行助力 共计25京豆,一天运行一次即可 活动时间:2020-12-4 到 2020-12-11 活动入口:https://prodev.m.jd.com/mall/active/nKxVyPnuLwAsQSTfidZ9z4RKVZy/index.html#/ diff --git a/jd_health.js b/jd_health.js index bcfc2a2a..bc435556 100644 --- a/jd_health.js +++ b/jd_health.js @@ -1,5 +1,6 @@ /* 健康抽奖机 ,活动于2020-12-31日结束 +脚本会给内置的码进行助力 活动地址:https://h5.m.jd.com/babelDiy/Zeus/3HBUP66Gnx92mRt2bXbT9VamYWSx/index.html 已支持IOS双京东账号,Node.js支持N个京东账号 脚本兼容: QuantumultX, Surge, Loon, JSBox, Node.js diff --git a/jd_pubg.js b/jd_pubg.js index 2bea1504..ed8b4122 100644 --- a/jd_pubg.js +++ b/jd_pubg.js @@ -1,5 +1,6 @@ /* -PUBG +PUBG ,运行时间会比较久,Surge请加大timeout时间 +脚本会给内置的码进行助力 活动于2020-12-13日结束 活动地址:https://starsingle.m.jd.com/static/index.html#/?fromChangeSkinNum=PUBG 已支持IOS双京东账号,Node.js支持N个京东账号 @@ -133,7 +134,7 @@ if ($.isNode()) { cookiesArr.push(...[$.getdata('CookieJD'), $.getdata('CookieJD2')]); } const JD_API_HOST = 'https://starsingle.m.jd.com/guardianstar/'; -const inviteCodes = ['65561ad5-af72-4d1c-a5be-37b3de372b67@2d5f579d-e6d1-479e-931f-c275d602caf5','65561ad5-af72-4d1c-a5be-37b3de372b67@2d5f579d-e6d1-479e-931f-c275d602caf5'] +const inviteCodes = ['65561ad5-af72-4d1c-a5be-37b3de372b67@2d5f579d-e6d1-479e-931f-c275d602caf5@a3551e1d-fb07-40f0-b9ad-d50e4b480098@696cfa20-3719-442a-a331-0e07beaeb375@718868ed-2202-465d-b3a4-54e76b30d02a','65561ad5-af72-4d1c-a5be-37b3de372b67@2d5f579d-e6d1-479e-931f-c275d602caf5'] !(async () => { await requireConfig(); if (!cookiesArr[0]) { diff --git a/jd_split.js b/jd_split.js index 9ff7f6b2..f2b4e441 100644 --- a/jd_split.js +++ b/jd_split.js @@ -1,5 +1,6 @@ /* 金榜年终奖 +脚本会给内置的码进行助力 活动时间:2020-12-12日结束 活动入口:京东APP首页右边浮动飘窗 已支持IOS双京东账号,Node.js支持N个京东账号