Skip to content

Commit 21fc8bd

Browse files
author
ziye12
authored
恢复微打卡,请用本地文件获取ck
1 parent 6ba31b8 commit 21fc8bd

File tree

1 file changed

+61
-5
lines changed

1 file changed

+61
-5
lines changed

dkhjziye333.js

Lines changed: 61 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
55
10.8 一共20个,自行删减替换(不一定都能提现,可自行关闭)
66
10.14 因为大部分打卡失效,现删减整理,剩余5个
7-
10.28 增加京优打卡和云端打卡,注意 云端打卡用本地js 改ck=2 进行获取
8-
10.29 增加久诺打卡和每天打卡,注意 久诺打卡用本地js 改ck=2 进行获取
7+
10.28 增加京优打卡和云端打卡
8+
注意 久诺打卡用本地js 改ck=2 进行获取
99
11.14 剔除无用打卡 剩余4个
10+
11.19 恢复微打卡 剩余5个 必须用本地文件获取微打卡的ck
1011
1112
功能如下:
1213
1.读秒限速打卡,
@@ -33,7 +34,8 @@ ck=1
3334
久诺打卡
3435
3536
36-
37+
ck=2
38+
微打卡
3739
3840
3941
@@ -60,7 +62,7 @@ ck=1
6062
6163
6264
63-
hostname=www.baimaa.com,ph0001.hezyq.com,cps.0day.fun,am.kuqi5.cn,
65+
hostname=www.baimaa.com,ph0001.hezyq.com,cps.0day.fun,am.kuqi5.cn,zm.shujumagician.com,
6466
6567
############## 圈x
6668
@@ -83,6 +85,12 @@ https:\/\/am\.kuqi5\.cn\/* url script-request-header https://raw.githubuserconte
8385
8486
8587
88+
//微打卡
89+
https:\/\/zm\.shujumagician\.com\/* url script-request-header https://raw.githubusercontent.com/ziye12/JavaScript/master/dkhjziye333.js
90+
91+
92+
93+
8694
############## loon
8795
8896
@@ -102,6 +110,13 @@ http-request https:\/\/cps\.0day\.fun\/* script-path=https://raw.githubuserconte
102110
http-request https:\/\/am\.kuqi5\.cn\/* script-path=https://raw.githubusercontent.com/ziye12/JavaScript/master/dkhjziye333.js, requires-body=true
103111
104112
113+
114+
115+
116+
//微打卡
117+
http-request https:\/\/zm\.shujumagician\.com\/* script-path=https://raw.githubusercontent.com/ziye12/JavaScript/master/dkhjziye333.js, requires-body=true
118+
119+
105120
############## surge
106121
107122
//音乐打卡
@@ -123,18 +138,22 @@ http-request https:\/\/am\.kuqi5\.cn\/* script-path=https://raw.githubuserconten
123138
124139
125140
141+
//微打卡
142+
微打卡= type=http-request,pattern=https:\/\/zm\.shujumagician\.com\/*,script-path=https://raw.githubusercontent.com/ziye12/JavaScript/master/dkhjziye333.js, requires-body=true
126143
127144
128145
*/
129146

130147
//////////////////////////////////////////正文
131148

132149
const CK=1// 修改ck 获取对应程序cookie
150+
133151
const jsname = '打卡合集'
134152
const $ = new Env(jsname)//模版引用
135153
const jbid =1// 换号则复制js,修改jbid的值就可以了
136154
const notify = 1; //通知开为1,关为0
137155
const logs = 0; // 日志开为1,关为0
156+
138157
const dk=1//打卡开关
139158
const tj=1//统计开关
140159
const xj=1//现金开关
@@ -220,6 +239,19 @@ const jndkurl =$.getdata(jndkkey)//读取ck
220239

221240

222241

242+
const wdkname = "微打卡";//程序名
243+
const wdkid = 2;//ck id
244+
const wdkcs = 20;//打卡次数
245+
const wdktx = 10;//提现标准
246+
const wdkxs = 10;//限速标准.单位为分钟
247+
const wdkdh = 13000;//兑换标准
248+
const wdkdhid = 9;//兑换id
249+
const wdkdhsp = "腾讯月卡";//兑换商品
250+
const wdkkey = "wdkkey"+jbid //保存ck
251+
const wdkurl =$.getdata(wdkkey)//读取ck
252+
253+
254+
223255

224256

225257

@@ -260,7 +292,8 @@ else if(i==1) yddk(i);
260292
else if(i==2) yydk(i);
261293

262294
else if(i==3) zqdk(i);
263-
295+
296+
else if(i==4) wdk(i);
264297

265298
else if(i==5) showmsg(i);
266299

@@ -339,6 +372,22 @@ if ($request && $request.url.match(/action=today&contr=index/))
339372
}
340373

341374

375+
376+
if (CK==2)
377+
{
378+
379+
380+
if ($request && $request.url.match(/i=2&/))
381+
if ($request && $request.url.match(/action=today&contr=index/))
382+
{const wdkurl = $request.url
383+
$.log(`wdkurl:${wdkurl}`)
384+
if (wdkurl) $.setdata(wdkurl, wdkkey)
385+
$.msg(wdkkey, `获取cookie: 成功🎉`, ``)
386+
}
387+
388+
389+
}
390+
342391

343392

344393
}
@@ -387,6 +436,13 @@ B(A)
387436

388437

389438

439+
function wdk() {
440+
var A={Y:[wdkurl,wdkname,wdkcs,wdktx,wdkxs,wdkdh,wdkdhid,wdkdhsp]}
441+
B(A)
442+
}
443+
444+
445+
390446

391447

392448

0 commit comments

Comments
 (0)