forked from QiuChenly/InjectLib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
1216 lines (1216 loc) · 39.4 KB
/
config.json
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
{
"project": "InjectShell",
"Author": "QiuChenly",
"Version": 3.0,
"Description": {
"desc": "这是一个用于解释说明json对象用途的说明文档。basePublicConfig里面的同名配置如果在AppList里面配置了相同的Key,则优先使用AppList里面的值。",
"bridgeFile": "app路径和注入文件路径之间的中间路径,有些app只能注入到/Contents,所以加了这个。",
"packageName": "app包名,用来确认App是否存在。",
"injectFile": "注入文件的相对app路径的路径",
"supportVersion": "支持的版本号,用于大版本号 如果不提供任意版本号则直接无条件注入",
"supportSubVersion": "更精确的子版本号,用于某些app大版本号不变但是经常变小版本号的陋习",
"extraShell": "额外的执行shell,比如PD18需要执行一些额外的shell,支持自定义。",
"needCopyToAppDir": "有些app需要复制到app目录中才能在SIP打开的时候运行 这个属性可以控制库文件被复制到Framework",
"deepSignApp": "自动签名整个App",
"disableLibraryValidate": "关闭库验证 暂时只为pd启用",
"entitlements": "用于跳过部分权限 在启用SIP的macOS上 如ARM64",
"noSignTarget": "默认注入后会对目标文件进行签名,我们有时候不需要这个行为。",
"noDeep": "--deep 控制",
"tccutil": "自动执行tccutil reset xxx CFBundleIdentifier,true为All,详细可用数组。目前会将所有的值在componentApp操作一遍默认行为。",
"autoHandleSetapp": "自动根据 CFBundleIdentifier 找出App的appBaseLocate,并拼接/Contents/MacOS/为bridgeFile,且默认找出bridgeFile下的对应二进制程序,不太完善,仅setapp测试通过",
"autoHandleHelper": "是否自动处理helper文件",
"helperFile": "helper文件的路径,例如/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper,可以传数组",
"componentApp": "组合app,有些大型app是由很多子app组成的,单独处理意义也不大,就这样吧.",
"forQiuChenly": "专门为QiuChenly特供的App,看到这条的你硬改也没用。",
"keygen": "不注入app,生成key破解,适用于重签名后丢失某特性的app,为true时,其他配置默认失效"
},
"basePublicConfig": {
"bridgeFile": "/Contents/Frameworks/"
},
"AppList": [
{
"packageName": "com.nssurge.surge-mac",
"appBaseLocate": "/Applications/Surge.app",
"bridgeFile": "/Contents/Frameworks/",
"injectFile": "Bugsnag.framework/Versions/A/Bugsnag",
"needCopyToAppDir": true,
"noSignTarget": true,
"autoHandleHelper": true,
"helperFile": "/Contents/Library/LaunchServices/com.nssurge.surge-mac.helper",
"tccutil": [
"All"
],
"forQiuChenly": false
},
{
"packageName": "codes.rambo.AirBuddy",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "AirBuddy",
"onlysh": true,
"extraShell": "airbuddy.sh",
"autoHandleHelper": true,
"helperFile": "/Contents/Library/LaunchServices/codes.rambo.AirBuddy.Installer",
"SMExtra": "codes.rambo.AirBuddy",
"needCopyToAppDir": true,
"componentApp": [
"/Contents/Library/LoginItems/AirBuddyHelper.app"
],
"tccutil": [
"All"
]
},
{
"packageName": [
"com.macpaw.CleanMyMac4"
],
"injectFile": "Announcements.framework/Versions/A/Announcements",
"needCopyToAppDir": true,
"noSignTarget": true,
"autoHandleHelper": true,
"helperFile": [
"/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent",
"/Contents/Library/LoginItems/CleanMyMac X Menu.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac4.Agent"
],
"componentApp": [
"/Contents/Library/LoginItems/CleanMyMac X Menu.app"
],
"tccutil": [
"All"
]
},
{
"packageName": "com.heavylightapps.lasso",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Lasso",
"needCopyToAppDir": true,
"forQiuChenly": true
},
{
"packageName": "com.hexrays.ida64",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "ida64",
"needCopyToAppDir": true,
"noSignTarget": true,
"extraShell": "copyLicense.sh"
},
{
"packageName": "com.edovia.screens.5",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Screens 5",
"needCopyToAppDir": true
},
{
"packageName": "lo.cafe.NotchNook",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "NotchNook",
"needCopyToAppDir": true
},
{
"packageName": "com.onmyway133.PastePal",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "PastePal",
"needCopyToAppDir": true
},
{
"packageName": "com.drbuho.disktool.BuhoNTFS",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "BuhoNTFS",
"needCopyToAppDir": true,
"forQiuChenly": false,
"autoHandleHelper": true,
"helperFile": "/Contents/Library/LaunchServices/com.drbuho.disktool.NTFSHelperTool",
"tccutil": [
"All"
]
},
{
"packageName": "com.proxyman.NSProxy-setapp",
"appBaseLocate": "/Applications/Setapp/Proxyman.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Proxyman",
"needCopyToAppDir": true,
"noSignTarget": true,
"autoHandleHelper": true,
"helperFile": "/Contents/Library/LaunchServices/com.proxyman.NSProxy.HelperTool",
"tccutil": [
"All"
]
},
{
"packageName": [
"com.macpaw.CleanMyMac-setapp"
],
"appBaseLocate": "/Applications/Setapp/CleanMyMac X.app",
"injectFile": "Announcements.framework/Versions/A/Announcements",
"needCopyToAppDir": true,
"noSignTarget": true,
"autoHandleHelper": true,
"helperFile": [
"/Contents/Library/LaunchServices/com.macpaw.CleanMyMac-setapp.Agent",
"/Contents/Library/LoginItems/CleanMyMac Menu.app/Contents/Library/LaunchServices/com.macpaw.CleanMyMac-setapp.Agent"
],
"componentApp": [
"/Contents/Library/LoginItems/CleanMyMac Menu.app"
],
"tccutil": [
"All"
]
},
{
"packageName": [
"com.edrawsoft.edrawmax",
"com.edrawsoft.mindmaster"
],
"injectFile": "QtXml.framework/Versions/5/QtXml",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.corel.CorelDRAW",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "CorelDRW",
"needCopyToAppDir": true,
"noSignTarget": true
},
{
"packageName": "pl.maketheweb.cleanshotx",
"injectFile": "InsiderKit.framework/Versions/A/InsiderKit",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "studio.fireball.moment",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/B/Sparkle"
},
{
"packageName": "com.setapp.DesktopClient.SetappAgent",
"appBaseLocate": "/Applications/Setapp.app/Contents/Library/LaunchServices/Setapp.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "SetappAgent",
"noSignTarget": true,
"needCopyToAppDir": true
},
{
"packageName": "com.tweety.MediaMate",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.moneywiz.personalfinance",
"injectFile": "Charts.framework/Versions/A/Charts",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true
},
{
"packageName": "com.xunyong.hapigo",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "AliyunOSSOSX.framework/Versions/A/AliyunOSSOSX",
"tccutil": [
"All",
"AddressBook",
"Calendar",
"Reminders",
"ScreenCapture",
"Accessibility"
]
},
{
"packageName": "com.surteesstudios.Bartender",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/A/Sparkle",
"tccutil": [
"All",
"Camera",
"Microphone",
"ScreenCapture"
]
},
{
"packageName": "com.pixelmatorteam.pixelmator.touch.x.photo",
"needCopyToAppDir": true,
"injectFile": "PXMPhotoKitUI.framework/Versions/A/PXMPhotoKitUI"
},
{
"packageName": "com.filmage.pro-lite.mac",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "KMDrawViewSDK_Mac.framework/Versions/A/KMDrawViewSDK_Mac"
},
{
"packageName": "com.crystalidea.macsfancontrol",
"injectFile": "QtMacExtras.framework/Versions/5/QtMacExtras",
"needCopyToAppDir": true,
"extraShell": "macfans.sh"
},
{
"packageName": "com.nonstrict.Bezel-direct",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"noDeep": true,
"deepSignApp": true
},
{
"packageName": "com.tinyapp.TablePlus",
"injectFile": "SSH.framework/Versions/A/SSH",
"needCopyToAppDir": true,
"noDeep": true,
"deepSignApp": true
},
{
"packageName": "app.elpass.macos",
"appBaseLocate": "/Applications/Elpass.app",
"injectFile": "MMMarkdown.framework/Versions/A/MMMarkdown",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "ws.stash.app.mac",
"appBaseLocate": "/Applications/Stash.app",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"noSignTarget": true,
"autoHandleHelper": true,
"helperFile": "/Contents/Library/LaunchServices/ws.stash.app.mac.daemon.helper",
"tccutil": [
"All"
]
},
{
"packageName": "com.firecore.infuse",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Infuse",
"needCopyToAppDir": true,
"entitlements": "signkeep.xml",
"deepSignApp": true
},
{
"packageName": "com.coderforart.MWeb3",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.nektony.App-Cleaner-SIII",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "NektonyFallManager.framework/Versions/A/NektonyFallManager",
"tccutil": [
"All",
"AddressBook",
"Reminders",
"Photos",
"AppleEvents"
]
},
{
"packageName": "com.nektony.MacCleaner-PRO-SIII",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/A/Sparkle",
"tccutil": [
"All",
"AddressBook",
"Calendar",
"Reminders",
"Photos",
"AppleEvents"
]
},
{
"packageName": "com.nektony.Disk-Expert-SIII",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/A/Sparkle",
"tccutil": [
"All",
"Reminders",
"Photos"
]
},
{
"packageName": "com.nektony.Duplicate-File-Finder-SIII",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/A/Sparkle",
"tccutil": [
"All",
"Photos"
]
},
{
"packageName": "li.zihua.medis2",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "HexFiend.framework/Versions/A/HexFiend"
},
{
"packageName": "com.zzd.Xnip",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "DKDrawKit.framework/Versions/A/DKDrawKit"
},
{
"packageName": "com.techsmith.camtasia2023",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "TSCAccount.framework/Versions/A/TSCAccount",
"extraShell": "camtasia.sh",
"tccutil": [
"Camera",
"Microphone",
"ScreenCapture",
"All"
]
},
{
"packageName": "me.damir.dropover-mac",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "DropoverAWS.framework/Versions/A/DropoverAWS"
},
{
"packageName": "com.hankinsoft.osx.sqlprostudio",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "HSCore.framework/Versions/A/HSCore"
},
{
"packageName": [
"com.bohemiancoding.sketch3",
"com.bohemiancoding.sketch3.appstore"
],
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Bugsnag.framework/Versions/A/Bugsnag"
},
{
"packageName": [
"com.incrediblebee.Archiver-setapp"
],
"needCopyToAppDir": true,
"bridgeFile": "/Contents/MacOS/",
"deepSignApp": true,
"injectFile": "Archiver"
},
{
"packageName": [
"com.krivoblotsky.ProjectsOrganizer-setapp"
],
"needCopyToAppDir": true,
"bridgeFile": "/Contents/MacOS/",
"deepSignApp": true,
"injectFile": "XCOrganizer"
},
{
"packageName": "com.artdesktop.bestzip2",
"injectFile": "JSONModel.framework/Versions/A/JSONModel"
},
{
"packageName": "com.navicat.NavicatPremium",
"appBaseLocate": "/Applications/Navicat Premium.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Navicat Premium",
"needCopyToAppDir": true
},
{
"packageName": "com.adobe.Photoshop",
"appBaseLocate": "/Applications/Adobe Photoshop (Beta)/Adobe Photoshop (Beta).app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"deepSignApp": true,
"noDeep": true
},
{
"packageName": "com.adobe.lightroomCC",
"appBaseLocate": "/Applications/Adobe Lightroom CC/Adobe Lightroom.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Adobe Lightroom",
"entitlements": "signkeep.xml",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.adobe.Photoshop",
"appBaseLocate": "/Applications/Adobe Photoshop 2024/Adobe Photoshop 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.adobe.illustrator",
"appBaseLocate": "/Applications/Adobe Illustrator 2024/Adobe Illustrator.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Adobe Illustrator",
"needCopyToAppDir": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.adobe.ame.application.24",
"appBaseLocate": "/Applications/Adobe Media Encoder 2024/Adobe Media Encoder 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.adobe.AfterEffects",
"appBaseLocate": "/Applications/Adobe After Effects 2024/Adobe After Effects 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.apple.FinalCutTrial",
"injectFile": "TLKit.framework/Versions/A/TLKit",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.Adobe-Animate-2024.application",
"appBaseLocate": "/Applications/Adobe Animate 2024/Adobe Animate 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.adobe.Audition",
"appBaseLocate": "/Applications/Adobe Audition 2024/Adobe Audition 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.adobe.PremierePro.23",
"appBaseLocate": "/Applications/Adobe Premiere Pro 2024/Adobe Premiere Pro 2024.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.adobe.Acrobat.Pro",
"appBaseLocate": "/Applications/Adobe Acrobat DC/Adobe Acrobat.app",
"injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.InCopy",
"appBaseLocate": "/Applications/Adobe InCopy 2024/Adobe InCopy 2024.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "PublicLib.dylib",
"needCopyToAppDir": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.autodesk.Maya.2024",
"appBaseLocate": "/Applications/Autodesk/maya2024/Maya.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Maya",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.autodesk.AutoCAD2024",
"appBaseLocate": "/Applications/Autodesk/AutoCAD 2024/AutoCAD 2024.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "AutoCAD",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "design.yugen.Flow",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Flow",
"needCopyToAppDir": true,
"noDeep": true
},
{
"packageName": "com.adobe.InDesign",
"appBaseLocate": "/Applications/Adobe InDesign 2024/Adobe InDesign 2024.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "PublicLib.dylib",
"needCopyToAppDir": true,
"noDeep": true,
"useOptool": false
},
{
"packageName": "com.adobe.LightroomClassicCC7",
"appBaseLocate": "/Applications/Adobe Lightroom Classic/Adobe Lightroom Classic.app",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Adobe Lightroom Classic",
"needCopyToAppDir": true,
"entitlements": "signkeep.xml"
},
{
"packageName": [
"com.microsoft.Excel",
"com.microsoft.Powerpoint",
"com.microsoft.Word",
"com.microsoft.Outlook"
],
"needCopyToAppDir": true,
"injectFile": "ADAL4.framework/Versions/A/ADAL4",
"entitlements": "signkeep.xml"
},
{
"packageName": "com.sublimetext.4",
"needCopyToAppDir": true,
"deepSignApp": true,
"entitlements": "signkeep.xml",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "sublime_text"
},
{
"packageName": "com.sublimemerge",
"needCopyToAppDir": true,
"deepSignApp": true,
"entitlements": "signkeep.xml",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "sublime_merge"
},
{
"packageName": "whbalzac.Huajian",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Live Wallpaper"
},
{
"packageName": "abnerworks.Typora",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Typora"
},
{
"packageName": "com.mac.utility.screen.recorder",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "OmniRecorder",
"tccutil": [
"All",
"Camera",
"Microphone",
"ScreenCapture"
]
},
{
"packageName": "com.mac.utility.media.player",
"injectFile": "XADMaster.framework/Versions/A/XADMaster",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.bandisoft.mac.bandizip",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Bandizip"
},
{
"packageName": "com.bandisoft.mac.bandizip365",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Bandizip365"
},
{
"packageName": "org.cindori.Sensei",
"needCopyToAppDir": true,
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"noSignTarget": true,
"autoHandleHelper": true,
"helperFile": "/Contents/Library/LaunchServices/org.cindori.SenseiHelper"
},
{
"packageName": "com.skylum.luminarneomas",
"injectFile": "CocoaLumberjack.framework/Versions/A/CocoaLumberjack",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.proxyman.NSProxy",
"injectFile": "Moya.framework/Versions/A/Moya",
"needCopyToAppDir": true,
"noSignTarget": true,
"autoHandleHelper": true,
"helperFile": "/Contents/Library/LaunchServices/com.proxyman.NSProxy.HelperTool"
},
{
"packageName": [
"com.seriflabs.affinityphoto2",
"com.seriflabs.affinitydesigner2",
"com.seriflabs.affinitypublisher2"
],
"injectFile": "liblibzlib.dylib",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.panic.transmit.mas",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "ZipZap.framework/Versions/A/ZipZap"
},
{
"packageName": "com.ulyssesapp.mac",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "KissXML.framework/Versions/A/KissXML"
},
{
"packageName": "app.mindmac.macos",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "Paddle.framework/Versions/A/Paddle"
},
{
"packageName": "com.charliemonroe.Downie-4",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "Paddle.framework/Versions/A/Paddle"
},
{
"packageName": "com.incrediblebee.Archiver4",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "BERegistration.framework/Versions/A/BERegistration"
},
{
"packageName": [
"tonyapp.devutils"
],
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "DiffMatchPatch.framework/Versions/A/DiffMatchPatch"
},
{
"packageName": [
"com.ideasoncanvas.mindnode.macos-setapp"
],
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "CanvasLayout_19E0F1ED461C44E6_PackageProduct.framework/Versions/A/CanvasLayout_19E0F1ED461C44E6_PackageProduct"
},
{
"packageName": "app.mp3tag.Mp3tag",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/B/Sparkle"
},
{
"packageName": "tech.baye.servercat",
"needCopyToAppDir": true,
"bridgeFile": "/Contents/MacOS/",
"deepSignApp": true,
"injectFile": "ServerCat"
},
{
"packageName": "com.ningle.shellbean",
"needCopyToAppDir": true,
"bridgeFile": "/Contents/MacOS/",
"deepSignApp": true,
"injectFile": "ShellBean"
},
{
"packageName": "com.krill.CodeRunner",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/A/Sparkle"
},
{
"packageName": "com.poke.SwiftUI-For-Designers",
"needCopyToAppDir": true,
"deepSignApp": true,
"bridgeFile": "/Contents/MacOS/",
"injectFile": "做个应用"
},
{
"packageName": "com.villow.wgt",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "BFPageControl.framework/Versions/A/BFPageControl"
},
{
"packageName": "com.wiheads.paste",
"bridgeFile": "/Contents/MacOS/",
"injectFile": "Paste",
"needCopyToAppDir": true,
"deepSignApp": true,
"tccutil": [
"All",
"Camera",
"Microphone",
"ScreenCapture"
]
},
{
"packageName": "cn.better365.ishot",
"injectFile": "PTHotKey.framework/Versions/A/PTHotKey",
"needCopyToAppDir": true,
"deepSignApp": true,
"tccutil": [
"All",
"Camera",
"Microphone",
"ScreenCapture"
]
},
{
"packageName": [
"cn.better365.iRightMouse",
"com.better365.autoinput",
"com.binarynights.ForkLift"
],
"keygen": true
},
{
"packageName": "com.drbuho.BuhoCleaner",
"injectFile": "Sparkle.framework/Versions/A/Sparkle",
"bridgeFile": "/Contents/Frameworks/DesktopApplication.framework/Versions/A/Frameworks/",
"needCopyToAppDir": true,
"deepSignApp": true,
"entitlements": "signkeep.xml",
"autoHandleHelper": true,
"helperFile": "/Contents/Library/LaunchServices/com.drbuho.BuhoCleaner.PrivilegedHelperTool",
"tccutil": [
"All"
]
},
{
"packageName": "org.qcad",
"injectFile": "libqcadcustomwidgets.dylib",
"bridgeFile": "/Contents/PlugIns/designer/",
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true
},
{
"packageName": "com.crossutility.quantumult-x",
"injectFile": "Quantumult X",
"bridgeFile": "/Contents/MacOS/",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.corecode.MacUpdater",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.veertu.anka",
"injectFile": "Anka",
"bridgeFile": "/Contents/MacOS/",
"needCopyToAppDir": true,
"deepSignApp": true
},
{
"packageName": "com.coppertino.Vox",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "DevMateKit.framework/Versions/A/DevMateKit"
},
{
"packageName": "com.hezongyidev.Bob",
"injectFile": "Bob",
"bridgeFile": "/Contents/MacOS/",
"needCopyToAppDir": true,
"deepSignApp": true,
"tccutil": [
"All"
]
},
{
"packageName": "com.zeroonetwenty.BlueHarvest5",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/A/Sparkle"
},
{
"packageName": "com.culturedcode.ThingsMac",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Base.framework/Versions/A/Base"
},
{
"packageName": "app.kaleidoscope.v4",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "SofaUIKit.framework/Versions/A/SofaUIKit"
},
{
"packageName": "com.mcneel.rhinoceros.8",
"needCopyToAppDir": true,
"deepSignApp": true,
"injectFile": "Sparkle.framework/Versions/B/Sparkle"
},
{
"packageName": [
"QReader.MarginStudyMac",
"QReader.MarginStudy.easy"
],
"needCopyToAppDir": true,
"deepSignApp": true,
"noDeep": true,
"injectFile": "Alamofire.framework/Versions/A/Alamofire"
},
{
"packageName": "cc.ffitch.shottr",
"injectFile": "Shottr",
"bridgeFile": "/Contents/MacOS/",
"needCopyToAppDir": true,
"deepSignApp": true,
"tccutil": [
"All"
]
},
{
"packageName": "com.setapp.DesktopClient",
"injectFile": "Sparkle.framework/Versions/B/Sparkle",
"needCopyToAppDir": true,
"deepSignApp": true,
"extraShell": "Setapps/setapp.sh"
},
{
"packageName": [
"com.macpaw.Gemini-setapp",
"com.macpaw.WallWiz-setapp",
"com.macpaw.clearvpn.macos-setapp",
"com.pagico.pagico-setapp",
"com.brettterpstra.marked-setapp",
"com.incrediblebee.Archiver-setapp",
"com.incrediblebee.Renamer-setapp",
"io.sipapp.Sip-setapp",
"com.witt-software.PDF-Squeezer-setapp",
"com.witt-software.Rocket-Typist-setapp",
"com.adriangranados.wifiexplorer-setapp",
"com.intuitibits.wifisignal-setapp",
"com.eltima.elmedia-setapp",
"com.eltima.Folx3-setapp",
"com.eltima.photobulk-setapp",
"com.eltima.cloudmounter-setapp",
"com.eltima.cmd1-setapp",
"us.electronic.juststream-setapp",
"uk.co.menial.Base-setapp",
"com.littlefin.chroniclemac-setapp",
"net.shinyfrog.image2icon-setapp",
"com.globaldelight.Capto-setapp",
"com.globaldelight.Boom3D-setapp",
"info.eurocomp.Timing-setapp",
"com.dejal.simon-setapp",
"com.dejal.timeout-setapp",
"com.realmacsoftware.squash-setapp",
"com.remotemouse.remotemouseserver-setapp",
"com.tumult.hype-setapp",
"com.tumult.Whisk-setapp",
"com.hogbaysoftware.TaskPaper3-setapp",
"com.hogbaysoftware.Bike-setapp",
"com.xwavesoft.befocused-setapp",
"com.xwavesoft.cloudoutlinertwomac-setapp",
"com.pointum.hazeover-setapp",
"com.gifox.gifox-setapp",
"com.nikolaeu.numi-setapp",
"com.71squared.focused-setapp",
"com.krill.CodeRunner-setapp",
"com.hahainteractive.GoodTask-setapp",
"com.bjango.istatmenus-setapp",
"com.p5sys.jumpdesktop-setapp",
"com.moneywiz.personalfinance-setapp",
"com.belightsoft.GetBackup-setapp",
"com.belightsoft.SwiftPublisher-setapp",
"com.cleverfiles.DiskDrill-setapp",
"com.renfei.snippetslab-setapp",
"com.wiheads.paste-setapp",
"com.charliemonroe.Permute-setapp",
"com.charliemonroe.Downie-setapp",
"com.charliemonroe.UctoX-setapp",
"com.econtechnologies.chronosync-express-setapp",
"com.iflicksapp.iflicks-setapp",
"com.hankinsoft.sqlpro-studio-setapp",
"com.hankinsoft.osx.sqliteprofessional-setapp",
"com.mentalfaculty.studies-setapp",
"io.lacona.Lacona-setapp",
"com.rcg.forecastbar-setapp",
"net.coldx.App-for-WhatsApp-setapp",
"com.etwok.netspot-setapp",
"com.apptorium.Expressions-setapp",
"com.apptorium.Workspaces-setapp",
"com.apptorium.TeaCode-setapp",
"com.apptorium.SideNotes-setapp",
"com.macitbetter.betterzip-setapp",
"ch.tripmode.TripMode-setapp",
"com.komarovmobile.macworldclock-setapp",
"com.lightpillar.Mosaic-setapp",
"com.lightpillar.Spotless-setapp",
"net.projectwizards.merlinprojectexpress-setapp",
"com.twopeoplesoftware.Instant-Translate-setapp",
"com.ntrack.ntrack-setapp",
"com.softwareambience.Unclutter-setapp",
"com.betamagic.News-Explorer-setapp",
"com.betamagic.Movie-Explorer-Pro-setapp",
"net.mkswap.Dropshare-setapp",
"com.kryolokovlin.Noizio-setapp",
"com.luckymarmot.Paw-setapp",
"com.tayasui.sketchespro-setapp",
"com.binarynights.forklift-setapp",
"com.iconjar.iconjar-setapp",
"com.guidedways.TodoMac-setapp",
"com.mozkan.pdfsearch-setapp",
"com.mrFridge.Wokabulary-setapp",
"com.sindresorhus.Lungo-setapp",
"com.sindresorhus.Dato-setapp",
"com.bradjasper.focus-setapp",
"co.noteplan.NotePlan-setapp",
"com.unmarked.textsoap-setapp",
"com.soulmen.ulysses-setapp",
"com.chekazuja.keykey-setapp",
"com.chekaZuja.TaoGit-setapp",
"com.outercorner.osx.Secrets-setapp",
"com.outercorner.Secrets-setapp",
"com.surteesstudios.Bartender-setapp",
"com.shapeservices.implusosx-setapp",
"com.tinyapp.TablePlus-setapp",
"com.advasoft.touchretouchmacadva-setapp",
"com.hegenberg.bettertouchtool-setapp",
"com.GiovanniMariaCusaro.Aquarelo-setapp",
"com.nevercenter.camerabagcinema-setapp",
"com.creaceed.prizmo-setapp",
"com.busymac.busycal-setapp",
"com.busymac.busycontacts-setapp",
"com.mailrtech.canarymail-setapp",
"ca.brawer.uBar-setapp",