-
Notifications
You must be signed in to change notification settings - Fork 1
/
Packages
9479 lines (8931 loc) · 343 KB
/
Packages
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Package: Reveal2Loader
Version: 1.0-3
Architecture: iphoneos-arm
Maintainer: duyongchao <[email protected]>
Depends: firmware (>= 8.0), mobilesubstrate, applist, preferenceloader, com.zidaneno5.ExtensionList
Conflicts: com.rheard.rhrevealloader, com.rheard.reveal-loader
Replaces: com.rheard.rhrevealloader, com.rheard.reveal-loader
Filename: debs/Reveal2Loader_1.0-3_iphoneos-arm.deb
Size: 4338590
MD5sum: e2045b2175b162f3cc358ce6040834d8
SHA1: 4f5eab14294fdf7a268d801a953c6bddfa7872b3
SHA256: f947d2fbdf55e9c227c4e73116ec20ca19af41b27728fb47e77497d5b2b6fcf8
Section: System
Priority: optional
Description: dynamically loads Reveal v21(11690) into applications and plugins.
Author: duyongchao <[email protected]>
Dev: zidaneno5
Name: Reveal2Loader
Package: cn.cydia.apfsdeleter
Version: 1.0.0
Architecture: iphoneos-arm
Maintainer: 公众号:Cydia
Installed-Size: 132
Filename: debs/cn.cydia.apfsdeleter_1.0.0_iphoneos-arm.deb
Size: 6584
MD5sum: 4a80ba69556a8c56db7e9f3b7c6b6e88
SHA1: 5f47cc447d876284ff4848acd4db9c8755ce63a7
SHA256: 37d440e4a1d4f3e4c9ca26a5345350dcb1a1c9748e1734c4c47d8f71496f7e84
Section: System
Description: 删除一个APFS分区
Tag: role::hacker
Author: XCXiao
Name: APFS删除工具
Package: cn.cydia.swipex
Version: 1.0.0-1+debug
Architecture: iphoneos-arm
Maintainer: Cydia
Installed-Size: 156
Depends: mobilesubstrate
Filename: debs/cn.cydia.swipex_1.0.0_iphoneos-arm.deb
Size: 6946
MD5sum: aa7b250cdc81814d982a3fbf49c0555b
SHA1: e8832d0b4606b4feb10595bbb56a54cdb8096e34
SHA256: 681aa65e37f513fddea1a6e5e2f3bcb7e2a8f2ad8b6b99596fa96c6286a043b9
Section: Tweaks
Description: iPhone X滑动手势
Author: Cydia
Name: iPhone X滑动手势
Package: cn.cydia.wxcounter
Version: 1.0.0-1+debug
Architecture: iphoneos-arm
Maintainer: Cydia+XLsn0w
Installed-Size: 152
Depends: mobilesubstrate
Filename: debs/cn.cydia.wxcounter_1.0.0-1+debug_iphoneos-arm.deb
Size: 5048
MD5sum: 95ed79e63c3da81cd3a8745ea6040c87
SHA1: 87852e11d88a6a4689edbfa68e508288a9349921
SHA256: 01cef105c6f89ee56d3563c2fe8868e848c46482ff4f8410469e451144308fef
Section: Tweaks
Description: 微信计步器随意改
Author: Cydia
Name: 微信计步器
Package: cn.darker.mode
Version: 1.0.0-1+debug
Architecture: iphoneos-arm
Maintainer: XLsn0w
Installed-Size: 176
Depends: mobilesubstrate, firmware (>= 13.0)
Filename: debs/cn.darker.mode_1.0.0_iphoneos-arm.deb
Size: 8270
MD5sum: c26ab32bf136c230bbe1d8d2af5d76fb
SHA1: e09b08fba33ba017e4881d647ee7b3f48e9bcf51
SHA256: d91f3891f7b55cc3060a4157ac46ea7e6f82f12a9d6300d910d02d585f4ff8bc
Section: Tweaks
Description: 使得 iOS 13/14 黑暗模式更黑 有利于OLED屏幕
Author: XLsn0w
Depiction: https://xlsn0w.github.io/tweak/
Name: OLED屏幕黑暗模式
Package: cn.mobgo.webgo
Version: 1.0.1
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Filename: debs/cn.mobgo.webgo_1.0.1_iphoneos-arm.deb
Size: 655548
MD5sum: f6d30f96730b56693eb83a2f09e36e22
SHA1: 1fd6fff99dea228d369c1d351110ad5421227a5a
SHA256: 46b460825ca68ee26f0199853f25a1566dd574d3952574746cd7c06eecf359c7
Section: Productivity
Priority: optional
Homepage: http://modmyi.com/info/webgo.php
Description: WebGo mobile navigator provides an easy way to access internet/wap sites via your cell phone only by one single click. Everybody will benefit from WebGo by being liberated from laborious input on cell phone.
Author: MobGo Inc. <[email protected]>
Depiction: http://modmyi.com/info/webgo.d.php
Name: WebGo
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: cn.xlsn0w.dock
Version: 1.1.5-3
Architecture: iphoneos-arm
Installed-Size: 136
Depends: mobilesubstrate, firmware (>= 11.0)
Filename: debs/cn.xlsn0w.dock_1.1.5-3_iphoneos-arm.deb
Size: 5538
MD5sum: 6900a78b98c5c837c15cc4b4d825c162
SHA1: a6a347c6b395c53d92c0ab11e96ca4385443c7e0
SHA256: f6b026f7dae84f86c51f682a6e57c3b5b7fc684de4560551991d5f10e436f45a
Section: Tweaks
Description: 自定义Dock个数; 跳动动画 在应用内上滑显示Dock栏
Author: XLsn0w
Depiction: https://github.com/XLsn0w/tweak/blob/master/XLsn0wDock.PNG?raw=true
Name: XLsn0wDock
Package: co.vitcortim.igameguardian
Version: 8.0k1
Architecture: iphoneos-arm
Maintainer: Victor Tim
Filename: debs/iGameGuardian.deb
Size: 407102
MD5sum: b54599a13c2c3a87683cb13de7b5577b
SHA1: 7e055ddbeb4d18bc20f0c4888eb9afe3e8749238
SHA256: 8c966231095f0b88e734ce5d6ef160d0e7a221b8fbfcc068aa5412374b1991cb
Section: Tweaks
Author: Aqua Wu
Name: iGameGuardian
Sponsor: Vitcortim.co
Package: cokepokes.crash-reporter
Version: 1.16.0-7
Architecture: iphoneos-arm
Maintainer: BigBoss <[email protected]>
Pre-Depends: firmware (>=4.0)
Depends: coreutils, dpkg, grep, cokepokes.jp.ashikase.libcrashreport (>= 1.1.0), cokepokes.jp.ashikase.libpackageinfo (>= 1.1.0), jp.ashikase.techsupport (>= 1.5.0.1-2), mobilesubstrate, preferenceloader
Conflicts: crash-reporter
Filename: debs/crashreporter.deb
Size: 346248
MD5sum: 1d379fe269a354809cc22c7b752ec5c5
SHA1: 7316e50d704eb298b608c18dd8ef130f934734de
SHA256: ae0114f65d5b4b60b9642e1cf6bad7ae05f6da3a343a942e40e1569a227366aa
Section: System
Homepage: http://github/ashikase/CrashReporter/
Description: Send useful crash info to developers.
Tag: purpose::uikit, role::enduser
Author: Lance Fetters (ashikase) <[email protected]>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=crashreporterData
Dev: ashikase
Name: CrashReporter (cokepokes)
Sponsor: thebigboss.org <http://thebigboss.org>
Package: cokepokes.jp.ashikase.libcrashreport
Version: 1.1.0-2
Architecture: iphoneos-arm
Maintainer: BigBoss <[email protected]>
Pre-Depends: firmware (>= 3.0)
Depends: cokepokes.jp.ashikase.libsymbolicate (>= 1.9.0), cokepokes.jp.ashikase.libpackageinfo
Conflicts: jp.ashikase.libcrashreport
Filename: debs/libcrashreport.deb
Size: 50916
MD5sum: 315e6c43822c96d2264af02cc06652bd
SHA1: 71a59d90828518ec2eee5a902f1c9b4e69006f0d
SHA256: aeab02392d70e7b57dbcd962455367c65fab6404fc80c2a4c6dcf5a03e973f76
Section: Development
Homepage: http://github.com/ashikase/libcrashreport
Description: Library to parse and symbolicate crash reports.
This library is based upon CrashReporter by kennytm.
Tag: role::developer
Author: Lance Fetters (ashikase) <[email protected]>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libcrashreportData
Dev: ashikase
Name: libcrashreport (cokepokes)
Sponsor: thebigboss.org <http://thebigboss.org>
Package: cokepokes.jp.ashikase.libpackageinfo
Version: 1.1.0.1-3
Architecture: iphoneos-arm
Maintainer: BigBoss <[email protected]>
Pre-Depends: firmware (>=3.0)
Replaces: jp.ashikase.libpackageinfo
Filename: debs/libpackageinfo.deb
Size: 123116
MD5sum: b3a9c152d42a76665b8e00919381f2d6
SHA1: bbf9177164a4dd42dc7eb706f7a84ebe46a25036
SHA256: 07b1a0dd90a9b9aac9ab008ac927460b10b9b87bc57590fee05818721d28575d
Section: Development
Homepage: http://github.com/ashikase/libpackageinfo
Description: Library to retrieve package information.
Tag: role::developer
Author: Lance Fetters (ashikase) <[email protected]>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libpackageinfoData
Dev: ashikase
Name: libpackageinfo (cokepokes)
Sponsor: thebigboss.org <http://thebigboss.org>
Package: cokepokes.jp.ashikase.libsymbolicate
Version: 1.9.0-2
Architecture: iphoneos-arm
Maintainer: BigBoss <[email protected]>
Pre-Depends: firmware (>=4.0)
Conflicts: jp.ashikase.libsymbolicate
Filename: debs/libsymbolicate.deb
Size: 45996
MD5sum: 7f3ef6587700b9635be99b3a23b4c91a
SHA1: ec4d3693fb44093e4a77acfd638de4bb61cfdff1
SHA256: 4a59217581cba846631b02bc08c800e29b4e07dbda0151a0afc715caa6a7a310
Section: Development
Homepage: http://github.com/ashikase/libsymbolicate
Description: Library to symbolicate memory addresses.
This library is based upon CrashReporter by kennytm.
Tag: role::developer
Author: Lance Fetters (ashikase) <[email protected]>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libsymbolicateData
Dev: ashikase
Name: libsymbolicate (cokepokes)
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.LSearch
Version: 1.0
Architecture: iphoneos-arm
Pre-Depends: firmware (>=6.0)
Filename: debs/LSearch.deb
Size: 459454
MD5sum: 35f9c51f117b2f5c1ce8b222750f60cf
SHA1: fbd892b7b5365b487b7d0f76aa87249c5a0c2705
SHA256: 4942676d5101f3d7752c4a4f64a29f922bd30087b51ef36d929255d07d836516
Author: 神气的煤气
Name: LSearch
Package: com.NetVoice.NetVoice
Version: 3.1.2
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Filename: debs/com.NetVoice.NetVoice_3.1.2_iphoneos-arm.deb
Size: 392710
MD5sum: 5e189b0763d4836842f15ed34d9e103f
SHA1: 18b4e7333ed7920cc78fd3ff680764d44f20a37c
SHA256: baefc6194b14eb3ed0c6d58dda3db4d140baadfc16c2f22c4b8a3f3a5deedf50
Section: Social
Priority: extra
Homepage: http://modmyi.com/info/netvoice.php
Description: Wirelessly Voice Chat with your friends over WiFi!
Author: ismoothproject <[email protected]>
Depiction: http://modmyi.com/info/netvoice.d.php
Name: NetVoice
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: com.alexelgt.programmesguides
Version: 1.1-2
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Pre-Depends: com.alexelgt.iguias (>= 5.2)
Filename: debs/com.alexelgt.programmesguides_1.1-2_iphoneos-arm.deb
Size: 20816
MD5sum: 1d88f57737b37ffb4551b278ea33dd1f
SHA1: 552173c070ba3039388ad8ac428710153a9f2c6b
SHA256: b221f2ef731c0ed776c08ef9699f920b6b103db8d2f0d84c681a3e9ea9d26ad6
Section: Addons
Priority: extra
Homepage: http://modmyi.com/info/guidesaboutprogrammes.php
Description: Guide for iGuias.
Author: alexelgt <[email protected]>
Depiction: http://modmyi.com/info/guidesaboutprogrammes.d.php
Name: Guides about programmes
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: com.arichardson.weepreferenceloader
Version: 1.1
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Depends: firmware (>= 5.0), mobilesubstrate
Filename: debs/com.arichardson.weepreferenceloader_1.1_iphoneos-arm.deb
Size: 34584
MD5sum: 35bf62f2243161cc671d15b13a880cd2
SHA1: 68de12f2e4097efe9e45a0adb0f30645bcdfd314
SHA256: 842c4fc51d546ed6557c7f2e4da472ca4f617645c571b8253a05d1715caca58f
Section: Tweaks
Priority: extra
Homepage: http://modmyi.com/info/weepreferenceloader.php
Description: A framework to easily add preferences to the Notifications settings.
Author: Andrew Richardson <[email protected]>
Depiction: http://modmyi.com/info/weepreferenceloader.d.php
Name: WeePreferenceLoader
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: com.ashman.lockinfocydget
Version: 1.1.0.1
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Pre-Depends: cydget, com.ashman.lockinfo (>= 1.1.9)
Filename: debs/com.ashman.lockinfocydget_1.1.0.1_iphoneos-arm.deb
Size: 4114
MD5sum: 325940a4ae58705e7104f556a2a6791a
SHA1: d383c810e87d7ac9dba36c13235a058ac96c4d82
SHA256: 225f0ea40856818ede78858eb071a53f6b224988d1f668b972ef68bd4b8ac85a
Section: Cydgets (Lock)
Homepage: http://modmyi.com/info/lockinfocydget.php
Description: Integrates LockInfo with Cydget
Author: David Ashman (Stimpy5050) <[email protected]>
Depiction: http://modmyi.com/info/lockinfocydget.d.php
Name: LockInfo Cydget
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: com.atwiiks.betterccxi
Version: 1.4.8
Architecture: iphoneos-arm
Maintainer: ATWiiks
Installed-Size: 320
Depends: mobilesubstrate, com.opa334.ccsupport, preferenceloader
Filename: debs/com.atwiiks.betterccxi_1.4.8_iphoneos-arm.deb
Size: 48898
MD5sum: ebdad1e913fe896be40c64d315fd0907
SHA1: a34a2f07b838a514dd8b9eb3d2d22f00627c2d14
SHA256: 328dcba1a5d0b9caaeabbb669c7deff84b3e617175453a3e132fc0a86d48eb3a
Section: Tweaks
Description: Enhance your control center on iOS 11 and iOS 12
Author: ATWiiks
Name: BetterCCXI
Package: com.atwiiks.betterccxiweather
Version: 1.0.1
Architecture: iphoneos-arm
Maintainer: ATWiiks
Installed-Size: 92
Depends: mobilesubstrate, com.opa334.ccsupport, preferenceloader, com.atwiiks.betterccxi
Filename: debs/com.atwiiks.betterccxiweather_1.0.1_iphoneos-arm.deb
Size: 11304
MD5sum: c3af4e83b1c341e5843ebaf8c5718e2c
SHA1: 013efb145f6ab7a25f6f55ed7bfce5e763c7015b
SHA256: b35a6a1911254d1cec80443a812e64b8728629232e7a290f9144f292c060700e
Section: Tweaks
Description: Weather Module for BetterCCXI
Author: ATWiiks
Name: BetterCCXI (Weather Addon)
Package: com.bates.lyrics
Version: 1.2
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Filename: debs/com.bates.lyrics_1.2_iphoneos-arm.deb
Size: 297508
MD5sum: 45c12a2e51d3ba6574228cdd3c20735f
SHA1: 73710d87a000a52c28d49a82f9a9dc5c2ef2848c
SHA256: a40caaa9d642b6b51132333a0a042c979c5e10aec76d38fbe6522f719b45a1da
Section: Utilites
Priority: extra
Homepage: http://modmyi.com/info/lyrics.php
Description: A simple app that gets song lyrics with just a press of a button!
Author: angeljruiz <[email protected]>
Depiction: http://modmyi.com/info/lyrics.d.php
Name: EasyLyrics
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: com.booleanmagic.displayrecorder
Version: 1.3.22~beta1
Architecture: iphoneos-arm
Maintainer: Ryan Petrich <[email protected]>
Installed-Size: 2492
Depends: mobilesubstrate (>= 0.9.5000), preferenceloader (>= 2.2.2), libactivator (>= 1.9.9), gdata-objectivec-client | firmware (>= 7.0), firmware (>= 3), openssl, firmware (<< 9.9), com.rpetrich.rocketbootstrap (>= 1.0.1) | firmware (<< 7.0), com.a3tweaks.flipswitch (>= 1.0.5)
Filename: debs/cydiastore_com.booleanmagic.displayrecorder_v1.3.22_beta1.deb
Size: 914570
MD5sum: c337781a37e78e81958869803fa1095b
SHA1: b22f79cbacbda918f02152786aa96650b86b38a0
SHA256: 8115a5c0d537d5a0d59c121d28f113504058663910c3828a9c31905df6ad0897
Section: System
Description: Record the display in real-time, send to camera roll, web interface, ProTapper-style touch circles and Activator integration
Tag: cydia::commercial
Author: Ryan Petrich <[email protected]>
Depiction: http://rpetri.ch/cydia/displayrecorder/
Dev: rpetrich
Name: Display Recorder
Website: http://rpetri.ch/cydia/displayrecorder/
Package: com.booleanmagic.wicarrier
Version: 1.1.5
Architecture: iphoneos-arm
Maintainer: Ryan Petrich <[email protected]>
Installed-Size: 184
Depends: mobilesubstrate, firmware (>= 3.0)
Filename: debs/com.booleanmagic.wicarrier_1.1.5_iphoneos-arm.deb
Size: 12556
MD5sum: 5b17f58a0a7a0e6594aec4995afe50b0
SHA1: 22d47a42ac35d4fd2224a31898513c26db7e79d0
SHA256: 8ef3b2778415ce2a9ac833f2fd0e63a76c48505046283c481025194d483838ab
Section: Tweaks
Description: Display WiFi network in status bar
Author: Ryan Petrich <[email protected]>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=WiCarrierDp
Dev: rpetrich
Name: WiCarrier
Website: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=WiCarrierDp
Package: com.bxk.nationaldebtclockwp
Version: 0.2.2
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Depends: winterboard
Filename: debs/com.bxk.nationaldebtclockwp_0.2.2_iphoneos-arm.deb
Size: 75248
MD5sum: d262bd4575b79647e822eeaf511a0731
SHA1: 1090ebdef7f8292124eb248580855f12e7d51d49
SHA256: da9ad0b104e7bddd3886819d9815fb55403461eedf2e4107a811c76fad132e5d
Section: Wallpaper
Homepage: http://modmyi.com/info/nationaldebtclockwp.php
Description: The National Debt Clock as your Wallpaper. Ment to be used with the National Debt Clock Cydget also.
Author: Matt Cox (BxK) <[email protected]>
Depiction: http://modmyi.com/info/nationaldebtclockwp.d.php
Name: National Debt Clock Wallpaper
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: com.cemck.killx-pro
Version: 2.1.2
Architecture: iphoneos-arm
Maintainer: cemck
Installed-Size: 848
Depends: mobilesubstrate, preferenceloader, applist, firmware (>= 11.0)
Conflicts: com.cemck.killx
Filename: debs/killx-pro_2.1.2_iphoneos-arm.deb
Size: 170912
MD5sum: 13ceab5d60b649588bb98dffd1eeb6d1
SHA1: c345910ab07c910f65cb2cbecb457828c00dbd72
SHA256: 4315dfd0a8130c43201072015c6bd8b79a544a32cdf732d2f0e1c6774caa51b3
Section: Tweaks
Description: One swipe to kill them all!
Author: cemck
Icon: file:///Library/PreferenceBundles/KillXProPrefs.bundle/[email protected]
Name: KillX Pro
Package: com.chinapyg.lookinloader
Version: 1.0.6-1
Architecture: iphoneos-arm
Maintainer: creantan/P.Y.G
Installed-Size: 10640
Depends: mobilesubstrate, preferenceloader, applist
Filename: debs/com.chinapyg.lookinloader_1.0.6-1_iphoneos-arm.deb
Size: 2866542
MD5sum: 4e23a6e27492953b22f249835d42d932
SHA1: b803d92e035950be173a52e7f05d4d4b9aab3948
SHA256: 333ee2e63adecdfb09eeb0c18e2fe8bed0e5233dbae50dd5056e4e0b23bc0d5c
Section: Tweaks
Homepage: https://www.chinapyg.com
Description: An awesome Lookin Loader for iOS8~iOS13!(https://www.chinapyg.com)
Author: creantan/P.Y.G
Icon: file:///Library/PreferenceLoader/Preferences/[email protected]
Name: LookinLoader
Package: com.chinchorrospr.chinchorrospr
Version: 2.1
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Filename: debs/com.chinchorrospr.chinchorrospr_2.1_iphoneos-arm.deb
Size: 3175152
MD5sum: a4152d06645be2700a7439982ef022e7
SHA1: b4d3b2ec7d9d9f502b8de90f62740f92b5646e6d
SHA256: 17c21b3347abc8be7389f4b95928e5182b530b15859bf107be1f245c631f1aa2
Section: Localization
Homepage: http://modmyi.com/info/chinchorrosprcom.php
Description: Everything you need in domestic tourism in Puerto Rico.
Author: chinchorrospr <[email protected]>
Depiction: http://modmyi.com/info/chinchorrosprcom.d.php
Name: Chinchorrospr.com
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: com.coffeejay.nimbusdot
Version: 5.0
Architecture: iphoneos-arm
Maintainer: poetic_folly <[email protected]>
Filename: debs/com.coffeejay.nimbusdot_5.0_iphoneos-arm.deb
Size: 339474
MD5sum: 205d1adeeea3b2bf9ca5257fc6bf15ae
SHA1: 8fb405708c7026653d5bd5a299fe2221f915d0f1
SHA256: d15173dcb8cfe9a359c41f185d0ed8e82b14ca93f4a02897ed35069b616ad6d6
Section: Networking
Priority: extra
Homepage: http://modmyi.com/info/nimbus.php
Description: nimbus Web Browser is introduced as the new standard for mobile browsing.
Author: coffeejay <[email protected]>
Depiction: http://modmyi.com/info/nimbus.d.php
Name: nimbus
Sponsor: ModMyi.com <http://modmyi.com/forums/index.php?styleid=31>
Package: com.cokepokes.CPRevealLoader
Version: 0.1-1
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 10.0), mobilesubstrate
Filename: debs/com.cokepokes.CPRevealLoader_0.1-1_iphoneos-arm.deb
Size: 4099946
MD5sum: 8863ff22818d9f5eaeed1670a79617f7
SHA1: ecdfa862baa31b53e666f21ac79afa7553af1cb7
SHA256: 4f287b403f6d699803cd3ee05ae9723ad51ee1ecf8172e686ccaa6f42f3e4211
Section: Tweaks
Priority: optional
Description: Enable Reveal server in any app for debugging UI. Works on A12 & with Reveal client version 23 (12724)
Author: CokePokes
Name: CPRevealLoader
Package: com.cokepokes.Masterball
Version: 1.1
Architecture: iphoneos-arm
Depends: firmware (>= 5.0), mobilesubstrate
Filename: debs/com.cokepokes.Masterball_1.1_iphoneos-arm.deb
Size: 11058
MD5sum: 8c4291cddde567556cdd1411a6513900
SHA1: 70c0cb766e2ea569d198bad6049bdbf2d2e30731
SHA256: e8b771c8a0a856c642f595076add14c98b5a91f2982934269e67b166b3e6dd4d
Section: Tweaks
Priority: optional
Description: Fixes the startup crash in the Pokemon Go app & hides jailbroken state
Author: CokePokes
Name: Masterball
Package: com.cokepokes.Nestboard
Version: 1.0-2
Architecture: iphoneos-arm
Depends: firmware (>= 5.0), mobilesubstrate, libactivator (>= 1.8.3)
Filename: debs/com.cokepokes.Nestboard_1.0-2_iphoneos-arm.deb
Size: 1105212
MD5sum: 2f55906f6621074b17f1ff10bfd89095
SHA1: a628d17c1c8a37252d1e6595361618b47800e73d
SHA256: 9905e6be0903e415c3cc41fa4081e14699ec73dcd62bca7bfd695b90ccbb04e0
Section: Tweaks
Priority: optional
Author: CokePokes
Name: Nestboard
Package: com.cokepokes.SmartGlass-Clip-Saver
Version: 1.0-2
Architecture: iphoneos-arm
Depends: mobilesubstrate
Filename: debs/com.cokepokes.SmartGlass-Clip-Saver_1.0-2_iphoneos-arm.deb
Size: 226870
MD5sum: 7d02417980a83955ef778def1982a7a7
SHA1: c6385a5c52e9c940d5b35f2ac53e5231eee7777e
SHA256: bc3d5dde10c8ef7941f8ea38bbc4958ebee589500858a0a631b7d3a46493266b
Section: Tweaks
Priority: optional
Description: Download & save SmartGlass game clips to camera roll.
Tag: purpose::extension
Author: CokePokes <[email protected]>
Dev: cokepokes
Name: SmartGlass Clip Saver
Package: com.cokepokes.Snapchat-Volume-Statusbar
Version: 0.7-1
Architecture: iphoneos-arm
Depends: firmware (>= 5.0), mobilesubstrate
Filename: debs/com.cokepokes.Snapchat-Volume-Statusbar_0.7-1_iphoneos-arm.deb
Size: 23828
MD5sum: 9cc1e98076c8b780e3d45ce173f5bb3b
SHA1: d8cf81f4e003bac9f3fb838e385ea7545cb19231
SHA256: 84b187cdccef6970d727affd8c941215d4d52db2b1eed3d74da24ae51dbe2c46
Section: Tweaks
Priority: optional
Description: A fucking awesome mobile substrate tweak!
Author: CokePokes
Name: Snapchat Volume Statusbar
Package: com.cokepokes.appdispatch
Version: 0.1-4
Architecture: iphoneos-arm
Depends: firmware (>= 10.0), mobilesubstrate, applist, preferenceloader
Filename: debs/com.cokepokes.appdispatch_0.1-4_iphoneos-arm.deb
Size: 76300
MD5sum: c7f55e95fabd519036c47ea2ffc6d611
SHA1: d8bd2a898e3cd50c0512c09f4012778074d6e906
SHA256: 720ed1c1fced8aef78709191b4ad5a27744562d4d36ca8cdaa33ae35817d443d
Section: Tweaks
Priority: optional
Description: Kills apps natively when visiting the home screen from application. Enable in Settings.
Author: CokePokes
Depiction: https://cokepokes.github.io/depiction/appdispatch.html
Name: AppDispatch
Sileodepiction: https://cokepokes.github.io/depiction/appdispatch/AppDispatch
Package: com.cokepokes.appstoreplusplus
Version: 0.9.13-2
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 11.0), mobilesubstrate, com.rpetrich.rocketbootstrap
Conflicts: com.unlimapps.uaupdatetools
Filename: debs/com.cokepokes.appstoreplusplus_0.9.13-2_iphoneos-arm.deb
Size: 682110
MD5sum: c768fba2f92615fc74df16bca183ec38
SHA1: f532ab2adf5a72008dc0b41db9cb99c638a9705e
SHA256: a395d2c0b4a3b39bc2110038e4014e0783fb3baa3f0e83c818c54a3ad15f7798
Section: Tweaks
Priority: optional
Description: Allows you to downgrade/upgrade apps in the AppStore on iOS 11-13.whatever
Author: CokePokes
Depiction: https://cokepokes.github.io/depiction/appstoreplus.html
Name: AppStore++
Package: com.cokepokes.betterarlosound
Version: 0.1-3
Architecture: iphoneos-arm
Depends: firmware (>= 8.0), mobilesubstrate
Filename: debs/com.cokepokes.betterarlosound_0.1-3_iphoneos-arm.deb
Size: 490990
MD5sum: 7d4d68c56ec614273f54c5b648d793c1
SHA1: 61f524a9a141897ef954c623340ea0937cc0a50d
SHA256: ff869b2eda188857bbb9dafce37c4ac4e687b586858f59ee9bb0b335f2fde651
Section: Tweaks
Priority: optional
Description: Makes the Arlo app notification fucking annoying. Perfect for ruining your sleep & figuring out someone is trying to break into your car resulting in having to pay a $500 deductible to your insurance company...because someone fucked with something you earned with your hard earned money. Fuck thieves, buy your own shit or get educated & find a better job. Also skrew people who don't recycle. Betches.
Author: CokePokes
Name: ArloAlertOnCrack
Package: com.cokepokes.fucklargetitles
Version: 0.2-1
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 11.0), mobilesubstrate
Filename: debs/com.cokepokes.fucklargetitles_0.2-1_iphoneos-arm.deb
Size: 33124
MD5sum: b8aa492de57b446a625961999d32ac42
SHA1: 1c7741e0e1dcdc7a7f0d21bbc0d2c3c7cb7d9d64
SHA256: 9e112bbc15c97180781a2547896d541edb410efd88e431305b3dfc7803956f32
Section: Tweaks
Priority: optional
Description: Removes the redeckulous iOS11 HUGE titles in Apps
Author: CokePokes
Name: fucklargetitles
Package: com.cokepokes.fuckoffFB
Version: 0.1-1
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 5.0), mobilesubstrate
Filename: debs/com.cokepokes.fuckoffFB_0.1-1_iphoneos-arm.deb
Size: 32430
MD5sum: 0286e11a3b809fc637a40cbed4bffd55
SHA1: a35ffad97a0ff36cccd7c85c1f8cd53d12992ae9
SHA256: 47cba0a24810d8dcc5057673e07c0f8e29e9b7cdac026458156bfb60ba747b1f
Section: Tweaks
Priority: optional
Description: Stop Facebook from crashing your apps!
Author: CokePokes
Name: Fuckoff Facebook
Package: com.cokepokes.inutt
Version: 1.2.0-2
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 9.0), mobilesubstrate
Filename: debs/com.cokepokes.inutt_1.2.0-2_iphoneos-arm.deb
Size: 25179394
MD5sum: 883b64f56b67d51e9a122004d7c67022
SHA1: a0f00739d92709ee0365752eae2b992f0ff180ef
SHA256: afdeb02a4b9ce4278340408fe7da200a6cae6b232bee96fb4abd9d23e5a777c3
Section: System
Priority: optional
Description: Search/download corn from four different corn sites!
Author: CokePokes
Depiction: https://cokepokes.github.io/depiction/inutt.html
Name: iNutt
Package: com.cokepokes.letsdowngrade
Version: 0.1-2
Architecture: iphoneos-arm
Maintainer: BigBoss <[email protected]>
Depends: firmware (>= 11.0), mobilesubstrate
Filename: debs/com.cokepokes.letsdowngrade_0.1-2_iphoneos-arm.deb
Size: 61092
MD5sum: bff4ab9d5db9b3d9ca44537cc41b43e0
SHA1: 9d57b3802e2db213bbbaedd9ad0b95d2d44b3848
SHA256: a8ce03aee404d3dc41e9c9c4603d46d175ad442f64819f554efdc45c80b07e11
Section: Development
Priority: optional
Description: Library to allow developers to downgrade AppStore apps
Tag: purpose::extension, compatible::ios11, compatible::ios12, compatible::ios13
Author: CokePokes <[email protected]>
Dev: cokepokes
Name: letsdowngrade
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.cokepokes.libnotifications
Version: 0.3-2
Architecture: iphoneos-arm
Maintainer: BigBoss <[email protected]>
Installed-Size: 980
Depends: firmware (>= 8.0)
Filename: debs/com.cokepokes.libnotifications_0.3-2_iphoneos-arm.deb
Size: 179210
MD5sum: 3a2eb2c43f2fa2252636cfe5426d5d3e
SHA1: 234c8e1cf495fc60af4d3cbd9eef7a58969c6bf0
SHA256: 1632ff09a953e674c0139031f48f814c4aef3ca34bdb5e594e43c18b206b2098
Section: Development
Priority: optional
Homepage: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libnotificationsDp
Description: App notification library.
Tag: purpose::extension, compatible::ios8, compatible::ios9, compatible::ios10, compatible::ios11, compatible::ios12
Author: CokePokes <[email protected]>
Depiction: http://moreinfo.thebigboss.org/moreinfo/depiction.php?file=libnotificationsDp
Dev: cokepokes
Name: libnotifications
Sponsor: thebigboss.org <http://thebigboss.org>
Package: com.cokepokes.phantom
Version: 6.1.2-5
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 10.0), mobilesubstrate, shell-cmds, ldid
Conflicts: com.cokepokes.snapdecent, com.cokepokes.libphantom, com.unlimapps.uasharedtools, tv.othman.scothman, tv.othman.scothman.ios11, com.pantsthief.snapchatnoclickbait, com.timecompiler.snapchatlog, com.nathaningraham.snapchatlowpowermodeenabler, com.expetelek.keepsnapchatsignedin, com.chloeeisoaky.luminous, com.neinzedd9.scfiltermover, net.ibrahim.scstorytimer, com.ithegentle.snapcheck, com.bengerard.snapselect, com.yungraj.streaknotify, com.n00neimp0rtant.picarchiver, brexit.chloee.snapcolor, com.ion.wraith, com.aeonlucid.snaphide, com.snaphelper.snapbreak.fr33, com.snaphelper.snapbreak
Replaces: com.cokepokes.spectre
Filename: debs/com.cokepokes.phantom_6.1.2-5_iphoneos-arm.deb
Size: 1552966
MD5sum: 67181ed89bd869e5ded2d5b6a2316d64
SHA1: 00f58dcf98a5da92f24b56f7716b7c0989d82d17
SHA256: 11e0c0ce00597adc4db8c2dfdfe96bbe9e53fdbc0969a75254d14acc89ec0a38
Section: Tweaks
Priority: optional
Description: Tweaked Snapchat. Works on Snapchat 10.60 without bans.
Author: CokePokes
Depiction: https://cokepokes.github.io/depiction/phantom
Name: Phantom [Beta]
Package: com.cokepokes.silencio
Version: 0.1-1
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 9.0), mobilesubstrate
Filename: debs/com.cokepokes.silencio_0.1-1_iphoneos-arm.deb
Size: 38386
MD5sum: 2d76da74ebfe2b3f5197356a8b3f73e7
SHA1: 0e202f95239b7d80dc6ebdaa92050ad51f040f35
SHA256: f3037b771f91c33d98f0fccc8c6cda5a55a5bd669411e661f782471d7364e276
Section: Tweaks
Priority: optional
Description: Silences the emergency alerts in iOS. Requested on reddit.com/r/jailbreak. Let me know if it works when a alert comes.
Author: CokePokes
Name: Silencio
Package: com.cokepokes.siriunlock
Version: 0.1-1
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 5.0), mobilesubstrate
Filename: debs/com.cokepokes.siriunlock_0.1-1_iphoneos-arm.deb
Size: 60056
MD5sum: 47d3fb186657d829801bbe9d0fd9d468
SHA1: f9fbedc320be7bd666f9d53570d30ae0cca27448
SHA256: 3dde68f541aefe1ad2695434350d3483fcf59ca0a8bdc25cc081cb255b4d0065
Section: Tweaks
Priority: optional
Description: Allows Siri to access sensitive data when your phone is locked. (ie: read last text messages, show notes & contacts.) This is a bit of a security degrading tweak. No options to configure, it just works.
Author: CokePokes
Name: SiriUnlock
Package: com.cokepokes.snapdecent
Version: 0.2-2
Architecture: iphoneos-arm
Depends: firmware (>= 8.0), mobilesubstrate
Filename: debs/com.cokepokes.snapdecent_0.2-2_iphoneos-arm.deb
Size: 27366
MD5sum: c9260cd5d5c4afcf978a0c699bb6523b
SHA1: c88d58d674f26ee1d5562481171259d0b0081337
SHA256: 2286b15c5b5d72f291c5c6331a507e52063518cfd0b7294b8e915b0024f35d8e
Section: Tweaks
Priority: optional
Description: Uses a file modification on every Snapchat app launch to revert back to the cool user interface. FOR THE IDIOTS: ENABLES OLD SNAPCHAT LOOK
Author: CokePokes
Name: snapdecent
Package: com.cokepokes.spectre
Version: 0.4
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 10.0), mobilesubstrate, com.rpetrich.rocketbootstrap, shell-cmds
Conflicts: com.cokepokes.snapdecent, com.cokepokes.libphantom, com.unlimapps.uasharedtools, tv.othman.scothman, tv.othman.scothman.ios11, com.pantsthief.snapchatnoclickbait, com.timecompiler.snapchatlog, com.nathaningraham.snapchatlowpowermodeenabler, com.expetelek.keepsnapchatsignedin, com.chloeeisoaky.luminous, com.neinzedd9.scfiltermover, net.ibrahim.scstorytimer, com.ithegentle.snapcheck, com.bengerard.snapselect, com.yungraj.streaknotify, com.n00neimp0rtant.picarchiver, brexit.chloee.snapcolor
Replaces: com.cokepokes.phantom
Filename: debs/com.cokepokes.spectre_0.4_iphoneos-arm.deb
Size: 504408
MD5sum: 04cffb7b01f8acb09f53ae4c3425fdf9
SHA1: 0bd2133f97e7e1be6df16ec9a7720e3d7edd4a6e
SHA256: d1a5285023695e4c083fc0575b450effdfffe560a1e8bdb7a2d54ae86bebd158
Section: Tweaks
Priority: optional
Description: Tweaked Snapchat. Works on Snapchat 10.36.0.23. Right now, it only saves Snaps. **Note: It is incompatible with every Unlimapps tweak since Snapchat checks for uasharedtools. (Eh, it's bloatware anyways. You're better without it.)
Author: CokePokes
Name: Spectre [Beta] (formally Phantom)
Package: com.cokepokes.supple
Version: 0.1-1
Architecture: iphoneos-arm
Depends: firmware (>= 10.0), mobilesubstrate
Filename: debs/com.cokepokes.supple_0.1-1_iphoneos-arm.deb
Size: 1157266
MD5sum: acef67c3e8c9bec791574441b76f5b92
SHA1: 7ab9d902a5026472fdfe6766e7415ae06a531e73
SHA256: 11dfc7160c875cb2ca9328d424dfd4efd4ff6f1077246ce49884f474d6fb2a01
Section: Tweaks
Priority: optional
Description: Loads FLEX into whatever app you have open by holding the status bar for .5 seconds. Works on A12! (Credit: NSExceptional)
Author: CokePokes
Name: Supple
Sileodepiction: https://cokepokes.github.io/depiction/supple/Supple
Package: com.cokepokes.teluguremove
Version: 0.1-2
Architecture: iphoneos-arm
Depends: firmware (>= 5.0)
Filename: debs/com.cokepokes.teluguremove_0.1-2_iphoneos-arm.deb
Size: 54886
MD5sum: 2cd6f11d4551d383bc345324628128d6
SHA1: 9abfabb31de3b6f16f4761c7668bb7d9526a52a5
SHA256: 4206198bf90566236df86478747a269e3624501647f16edd22608e2a6e66520c
Section: System
Priority: optional
Description: This package is only a script that runs during installation. It renames the font file to KohinoorTelugu.ttc.nope and reverts back when this package is uninstalled.
Author: CokePokes
Name: teluguremove
Package: com.cokepokes.tumblrinf
Version: 0.1-1
Architecture: iphoneos-arm
Depends: firmware (>= 5.0), mobilesubstrate
Filename: debs/com.cokepokes.tumblrinf_0.1-1_iphoneos-arm.deb
Size: 134144
MD5sum: 7a40cb5fda811c6cb55b0784b177356b
SHA1: 266d0aa6b3fbf7e8e1a7109f1877dc2a8d50c756
SHA256: 2e380e088e94cf6b1d36a09b4c2657b95caa1d06dfc7f123248d2926d3c7e087
Section: Tweaks
Priority: optional
Author: CokePokes
Name: Tumblr ∞
Package: com.cokepokes.watchUtilsSB
Version: 0.1-2
Architecture: iphoneos-arm
Maintainer: CokePokes
Depends: firmware (>= 11.0), mobilesubstrate, com.rpetrich.rocketbootstrap (>= 1.0.6)
Filename: debs/com.cokepokes.watchUtilsSB_0.1-2_iphoneos-arm.deb
Size: 13776
MD5sum: cfeb1a6dc2b0bb81a20e88ce646683c0
SHA1: f3e19c84e0283bb8af08a52c3676fbbe19185f0d
SHA256: 647397c7a10d57d46e8ea1e8f7947b7430a82ee68596452bf4bc7679e9b04c32
Section: Tweaks
Priority: optional
Homepage: https://gist.github.com/CokePokes/9ad9eb5578c94418f437b39475f75e2f
Description: This tweak is useless without the companion app found here https://gist.github.com/CokePokes/9ad9eb5578c94418f437b39475f75e2f
Author: CokePokes
Depiction: https://gist.github.com/CokePokes/9ad9eb5578c94418f437b39475f75e2f/b6ddb1801b4b72036f6cd492d51394a225bac89e
Name: Core WatchUtils
Package: com.cydiabc.MsgFilt
Version: 0.1-1
Architecture: iphoneos-arm
Maintainer: Mao
Depends: firmware (>= 5.0), mobilesubstrate
Filename: debs/msgfilt_0.1-1_iphoneos-arm.deb
Size: 147296
MD5sum: 744e5d71d8a5edbb82bce4e42def0958
SHA1: a85a983427fe3a14670e7eccef28fab9fd0b93b0
SHA256: 969494b25f9f2763b179cf994fed11fa68aeeb0f3e41e42f37555d77301a51cf
Section: 微信
Priority: optional
Description: 群内消息屏蔽 群消息屏蔽 私聊消息屏蔽
A12: 1
Author: Mao
Icon: file:///Applications/Cydia.app/Sections/Messaging.png
Icon2: 10.png
Name: 消息屏蔽助手
Sponsor: Mao
Package: com.cydiabc.a-bypass
Version: 1.3.5
Architecture: iphoneos-arm
Maintainer: Ai-小苹果
Installed-Size: 960
Depends: mobilesubstrate, com.muirey03.libmryipc, applist
Filename: debs/a-bypass_1.3.5_iphoneos-arm.deb
Size: 125720
MD5sum: 99a3c745c197bf126d515e0342668500
SHA1: e5208e7df890a034c7fba9e86797527c3fb4c350
SHA256: 6781b4aab3b39db8a0a8b4a223353133c3bc097f5840460ccced91ef060bac5c
Section: 系统
Description: 一款强力有效 简单设置的屏蔽越狱插件,能解决iOS13王者荣耀,使命召唤等一些游戏的闪退,支付宝开启指纹面容等等
A12: 1
Author: Baw Appie
Icon: file:///Applications/Cydia.app/Sections/Tweaks.png
Icon2: 12.png
Name: A-Bypass越狱屏蔽
Sponsor: Ai-小苹果
Package: com.cydiabc.bankabcnojb
Version: 1.1-1
Architecture: iphoneos-arm
Maintainer: Ai-小苹果
Installed-Size: 925
Depends: mobilesubstrate
Filename: debs/bankabcnojb_1.1-1_iphoneos-arm.deb
Size: 151634
MD5sum: 6c4bfc2d66854ab0ac4158cde6d2e032
SHA1: 8671633a340162cfcdc85d0b3c53a499cae4744d
SHA256: c1b31451e8a28e01e700b6a530f8add5ba77dd261873ef347d7ea0d8befbe004
Section: 插件
Description: 中国农业银行屏蔽越狱检测
A12: 1
Author: Netskao
Icon: file:///Applications/Cydia.app/Sections/Tweaks.png
Icon2: 1.png
Name: 中国农业银行屏蔽越狱
Sponsor: Ai-小苹果
Package: com.cydiabc.ccbnojb
Version: 1.1-1
Architecture: iphoneos-arm
Maintainer: Ai-小苹果
Installed-Size: 931
Depends: mobilesubstrate
Filename: debs/ccbnojb_1.1-1_iphoneos-arm.deb
Size: 152160
MD5sum: 2dd13a4b26658af54eb0d7879670f551
SHA1: 803c9ebb811ed9b89405448b81285c08fd38f07a
SHA256: afe4222520c76628167d5ede2674aa541ff48eeb37e0c79dd595a9014d6329cc
Section: 插件
Description: 中国建设银行屏蔽越狱检测
A12: 1
Author: Netskao
Icon: file:///Applications/Cydia.app/Sections/Tweaks.png
Icon2: 1.png
Name: 建设银行屏蔽越狱
Sponsor: Ai-小苹果
Package: com.cydiabc.choicy
Version: 1.2.4-2
Architecture: iphoneos-arm
Maintainer: Ai-小苹果
Installed-Size: 840
Depends: mobilesubstrate, applist
Filename: debs/choicy_1.2.4-2_iphoneos-arm.deb
Size: 103556
MD5sum: f7b35a0e2843b3e64ae866de082ee1d6
SHA1: b1521e15ebca36076f9009dd6027a5e3af94bd71
SHA256: afba9c92cae40a2f4781f69dec894c125dd0395ab907cc1f32d7af424a6eeef9
Section: 系统
Description: 更准确的屏蔽越狱检测,全功能完整汉化版,具体效果预览截图
A12: 1
Author: opa334
Icon: file:///Applications/Cydia.app/Sections/Tweaks.png
Icon2: 12.png
Name: Choicy越狱屏蔽
Sponsor: Ai-小苹果
Package: com.cydiabc.flyjb
Version: 0.2.5.6
Architecture: iphoneos-arm
Maintainer: Ai-小苹果
Depends: mobilesubstrate, applist (>= 1.5.15), preferenceloader
Filename: debs/flyjb_0.2.5.6_iphoneos-arm.deb
Size: 498950
MD5sum: 2cf56916be7e3b3b2697afb3f79154de
SHA1: 765b6a9842551826a414cbae3b1be4e83e0a1345
SHA256: d9bc1b760b2a54e6190eecce3c265bf3f208d9d6865028dfdc47e8a82ee75ec8
Section: 系统
Description: 屏蔽越狱检测 激活指纹 面容支付,插件为韩语插件,已经汉化
A12: 1
Author: XsF1re
Icon: file:///Applications/Cydia.app/Sections/System.png
Icon2: 12.png
Name: FlyJB屏蔽越狱检测
Sponsor: Ai-小苹果
Package: com.cydiabc.icbcjailbreakedbypass
Version: 1.1-1
Architecture: iphoneos-arm
Maintainer: Netskao
Installed-Size: 965
Depends: mobilesubstrate
Filename: debs/icbcjailbreakedbypass_1.1-1_iphoneos-arm.deb
Size: 171788
MD5sum: 0c668de37c4ac3958716b86213ceee9f
SHA1: c95171733190db4f166449346c74992dcb270997
SHA256: 3cea30b459e771650db981d511106857f0c11ee6a1bccada897c0d738dd11189
Section: 插件
Description: 工商银行绕过越狱检测
Tag: purpose::extension, compatible::ios13
A12: 1
Author: Netskao
Icon: file:///Applications/Cydia.app/Sections/Tweaks.png
Icon2: 1.png
Name: 工商银行屏蔽越狱
Sponsor: Netskao
Package: com.cydiabc.kernbypass
Version: 0.0.7-1
Architecture: iphoneos-arm
Maintainer: akusio
Installed-Size: 568
Depends: mobilesubstrate, applist, preferenceloader
Filename: debs/kernbypass_0.0.7-1_iphoneos-arm.deb
Size: 26704
MD5sum: edb5614381704ed99018d83e04a2f84d
SHA1: f0ceebe7b5348ba0a85e72fb1b7c7ada429cd945
SHA256: 12dd7dd4a5717d4695cd3a6573b5320e37e25971b217e4ced7576525b5af6121
Section: 系统