-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsync-sources.txt
10579 lines (10579 loc) · 518 KB
/
sync-sources.txt
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
bucket\010editor.json, ScoopInstaller/Extras, 0
bucket\0ad.json, Calinou/scoop-games, 0
bucket\0xProto-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\0xProto-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\0xProto-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\0xProto.json, renxia/scoop-bucket, 1
bucket\10x-np.json, ScoopInstaller/Nonportable, 0
bucket\115.json, echoiron/echo-scoop, 0
bucket\115chrome.json, echoiron/echo-scoop, 0
bucket\11game-platform.json, SayCV/scoop-cvp, 0
bucket\123pan.json, akirco/aki-apps, 1
bucket\163MusicLyrics.json, ygguorun/scoop-bucket, 1
bucket\1Remote-Portable.json, ACooper81/scoop-apps, 1
bucket\1Remote.json, zhoujin7/tomato, 1
bucket\1by1-Portable.json, ACooper81/scoop-apps, 0
bucket\1by1.json, naderi/scoop-bucket, 0
bucket\1password-cli.json, ScoopInstaller/Main, 0
bucket\1password-cli1.json, ScoopInstaller/Versions, 0
bucket\2345pic.json, echoiron/echo-scoop, 0
bucket\3270-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\3270-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\3270-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\360Chrome.json, kkzzhizhou/scoop-zapps, 0
bucket\360DrvMgr.json, Paxxs/Cluttered-bucket, 0
bucket\360NetRepair.json, kkzzhizhou/scoop-zapps, 1
bucket\360zip.json, Weidows-projects/scoop-3rd, 1
bucket\3d-fix-manager.json, ScoopInstaller/Extras, 0
bucket\3dtile.json, scoopcn/scoopcn, 1
bucket\3rvx.json, ScoopInstaller/Extras, 0
bucket\4KSlideshowMaker-Install.json, ACooper81/scoop-apps, 0
bucket\4KSlideshowMaker-Portable.json, ACooper81/scoop-apps, 0
bucket\4KVideoDownloader-Install.json, ACooper81/scoop-apps, 0
bucket\4KVideoDownloader-Portable.json, ACooper81/scoop-apps, 0
bucket\4KVideoDownloaderPlus-Install.json, ACooper81/scoop-apps, 0
bucket\4KVideoDownloaderPlus-Portable.json, ACooper81/scoop-apps, 0
bucket\4gb-patch.json, ScoopInstaller/Extras, 0
bucket\4k-stogram.json, starise/Scoop-Confetti, 0
bucket\4k-videodownloader.json, starise/Scoop-Confetti, 0
bucket\4k-videotomp3.json, starise/Scoop-Confetti, 0
bucket\4k-youtubetomp3.json, starise/Scoop-Confetti, 0
bucket\4kvideodownloader.json, echoiron/echo-scoop, 0
bucket\4kvideodownloaderplus.json, echoiron/echo-scoop, 0
bucket\64Gram-tdesktop-fork.json, Weidows-projects/scoop-3rd, 1
bucket\64gram.json, ScoopInstaller/Extras, 1
bucket\7800basic.json, littleli/Scoop-littleli, 1
bucket\7Zip-Install.json, ACooper81/scoop-apps, 0
bucket\7ZipBeta-Portable.json, ACooper81/scoop-apps, 0
bucket\7tsp.json, ScoopInstaller/Extras, 0
bucket\7tt.json, ScoopInstaller/Extras, 0
bucket\7z-build-nsis.json, ViCrack/scoop-bucket, 1
bucket\7zTC.json, brian6932/dank-scoop, 1
bucket\7zip-beta.json, ScoopInstaller/Versions, 0
bucket\7zip-extra.json, naderi/scoop-bucket, 0
bucket\7zip-lzma.json, naderi/scoop-bucket, 0
bucket\7zip-nsis.json, HUMORCE/nuke, 1
bucket\7zip-zstd-instead.json, Weidows-projects/scoop-3rd, 1
bucket\7zip-zstd.json, ScoopInstaller/Versions, 1
bucket\7zip.json, ScoopInstaller/Main, 1
bucket\7zip19.00-helper.json, ScoopInstaller/Main, 0
bucket\[email protected], renxia/scoop-bucket, 0
bucket\[email protected], renxia/scoop-bucket, 0
bucket\[email protected], renxia/scoop-bucket, 0
bucket\[email protected]+zs.json, renxia/scoop-bucket, 1
bucket\[email protected], renxia/scoop-bucket, 0
bucket\7ztm.json, ScoopInstaller/Extras, 0
bucket\86box-manager.json, ScoopInstaller/Extras, 1
bucket\86box-roms.json, ScoopInstaller/Extras, 1
bucket\86box.json, ScoopInstaller/Extras, 1
bucket\8bitdo-ultimate-software-v2.json, hu3rror/scoop-muggle, 0
bucket\8gadgetpack-np.json, ScoopInstaller/Nonportable, 0
bucket\ABBYYFineReader.json, kkzzhizhou/scoop-zapps, 1
bucket\ACG-Power.json, Darkatse/Scoop-KanColle, 0
bucket\ACNH-design-pattern-editor.json, hu3rror/scoop-muggle, 1
bucket\AIO-Boot.json, Weidows-projects/scoop-3rd, 1
bucket\AIStarter.json, Weidows-projects/scoop-3rd, 0
bucket\AWGG-Portable.json, ACooper81/scoop-apps, 1
bucket\AccentApplicator-UserInstall.json, ACooper81/scoop-apps, 1
bucket\AcronisTrueImage.json, kkzzhizhou/scoop-zapps, 1
bucket\AcrylicDNSProxy-Portable.json, ACooper81/scoop-apps, 0
bucket\ActiveMQ-Classic.json, zhoujin7/tomato, 1
bucket\AdGuardHome-Portable.json, ACooper81/scoop-apps, 1
bucket\AdGuardHome.json, ViCrack/scoop-bucket, 1
bucket\AdobeAcrobatReader-Install.json, ACooper81/scoop-apps, 0
bucket\AdobeCreativeCloud-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\AdobeCreativeCloudCleanerToolCLI-Portable.json, ACooper81/scoop-apps, 0
bucket\AdobeCreativeCloudPreW10-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\AdobeDNGConverter-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\AdobeIllustrator.json, kkzzhizhou/scoop-zapps, 1
bucket\AdobePhotoshopCC.json, kkzzhizhou/scoop-zapps, 1
bucket\AdvancedIPScanner-Portable.json, ACooper81/scoop-apps, 0
bucket\AdvancedPassGen-Portable.json, ACooper81/scoop-apps, 1
bucket\AdvancedWgetGUI-Portable.json, ACooper81/scoop-apps, 1
bucket\Adwaita-for-Steam.json, Weidows-projects/scoop-3rd, 1
bucket\Agave-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Agave-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Agave-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Aida64-Bu.json, Paxxs/Cluttered-bucket, 1
bucket\Aida64-En.json, Paxxs/Cluttered-bucket, 1
bucket\Aida64-Ex.json, Paxxs/Cluttered-bucket, 1
bucket\AliIM.json, kkzzhizhou/scoop-zapps, 0
bucket\AliWangWang.json, SayCV/scoop-cvp, 1
bucket\Allavsoft-Install.json, ACooper81/scoop-apps, 0
bucket\AllwaySync-Install.json, ACooper81/scoop-apps, 0
bucket\AllwaySyncnGo-Portable.json, ACooper81/scoop-apps, 0
bucket\Alt-C.json, kkzzhizhou/scoop-zapps, 0
bucket\AltAppInstaller-Portable.json, ACooper81/scoop-apps, 1
bucket\AmazonGames-UserInstall.json, ACooper81/scoop-apps, 0
bucket\AmazonMusic-UserInstall.json, ACooper81/scoop-apps, 0
bucket\AngryIPScanner-Portable.json, ACooper81/scoop-apps, 1
bucket\Anki-Portable.json, ACooper81/scoop-apps, 1
bucket\AnonymousPro-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\AnonymousPro-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\AnonymousPro-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Anuphan.json, matthewjberger/scoop-nerd-fonts, 0
bucket\AnyBurn-Portable.json, ACooper81/scoop-apps, 0
bucket\AnyTXT.json, cc713/ownscoop, 0
bucket\ApkMessenger.json, kkzzhizhou/scoop-zapps, 1
bucket\AppBuster-Portable.json, ACooper81/scoop-apps, 0
bucket\AppFlowy-Portable.json, ACooper81/scoop-apps, 1
bucket\AquaSnap-Portable.json, ACooper81/scoop-apps, 0
bucket\Archivarius3000.json, kkzzhizhou/scoop-zapps, 0
bucket\Archive-password-cracker.json, Weidows-projects/scoop-3rd, 1
bucket\ArctimePro.json, ygguorun/scoop-bucket, 0
bucket\Arduino-Portable.json, ACooper81/scoop-apps, 1
bucket\ArduinoRC-Portable.json, ACooper81/scoop-apps, 1
bucket\AriaNgGUI-Portable.json, ACooper81/scoop-apps, 1
bucket\Arimo-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Arimo-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Arimo-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Arp-PingCLI-Portable.json, ACooper81/scoop-apps, 0
bucket\ArpsiftCLI-Portable.json, ACooper81/scoop-apps, 0
bucket\AssetStudioMod.json, NyaMisty/scoop_bucket_misty, 1
bucket\AssetStudioModCLI.json, NyaMisty/scoop_bucket_misty, 1
bucket\AsusDeviceDiscovery-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\Atom-Portable.json, ACooper81/scoop-apps, 1
bucket\Audacious-Portable.json, ACooper81/scoop-apps, 0
bucket\Audacity-Install.json, ACooper81/scoop-apps, 1
bucket\Audacity-Portable.json, ACooper81/scoop-apps, 1
bucket\AudioRouter-Portable.json, ACooper81/scoop-apps, 1
bucket\AurulentSansMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\AurulentSansMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\AurulentSansMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Authme-Portable.json, ACooper81/scoop-apps, 1
bucket\AutoDarkMode-Portable.json, ACooper81/scoop-apps, 1
bucket\AutoDarkMode-UserInstall.json, ACooper81/scoop-apps, 1
bucket\AutoDeleteFileOnPCWechat.json, kkzzhizhou/scoop-zapps, 1
bucket\AutoGUI.json, kkzzhizhou/scoop-zapps, 1
bucket\AutoHotkey-Install.json, ACooper81/scoop-apps, 1
bucket\AutoHotkey-Portable.json, naderi/scoop-bucket, 0
bucket\AutoHotkey2-Install.json, ACooper81/scoop-apps, 0
bucket\AutoHotkey2-Portable.json, ACooper81/scoop-apps, 0
bucket\AutoHotkey2-UserInstall.json, ACooper81/scoop-apps, 0
bucket\AutoIt-Install.json, ACooper81/scoop-apps, 0
bucket\AutoIt-Portable.json, ACooper81/scoop-apps, 0
bucket\AutoUnlocker-Portable.json, ACooper81/scoop-apps, 1
bucket\Autologon-Portable.json, ACooper81/scoop-apps, 0
bucket\AutorunOrganizer-Install.json, ACooper81/scoop-apps, 0
bucket\AutorunOrganizer-Portable.json, ACooper81/scoop-apps, 0
bucket\Autoruns.json, kkzzhizhou/scoop-zapps, 0
bucket\AutumnBox.json, Weidows-projects/scoop-3rd, 1
bucket\Avidemux-Portable.json, ACooper81/scoop-apps, 1
bucket\AxGlyph.json, ygguorun/scoop-bucket, 0
bucket\AxMath.json, ygguorun/scoop-bucket, 0
bucket\BADownloaderUI.json, Weidows-projects/scoop-3rd, 1
bucket\Bai-Jamjuree.json, matthewjberger/scoop-nerd-fonts, 0
bucket\BaiduNetdisk.json, kkzzhizhou/scoop-zapps, 0
bucket\Bandicam-portable.json, kkzzhizhou/scoop-zapps, 1
bucket\Bart-Portable.json, ACooper81/scoop-apps, 0
bucket\BatToExeConverter.json, kkzzhizhou/scoop-zapps, 1
bucket\BeautySearch-Portable.json, ACooper81/scoop-apps, 1
bucket\BeekeeperStudio-Portable.json, ACooper81/scoop-apps, 1
bucket\BetterNCM.json, ygguorun/scoop-bucket, 1
bucket\BigBlueTerminal-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\BigBlueTerminal-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\BigBlueTerminal-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\BilibiliLiveRecordDownLoader.json, ygguorun/scoop-bucket, 1
bucket\BingDianWenku.json, kkzzhizhou/scoop-zapps, 1
bucket\BitTorrent-Portable.json, kkzzhizhou/scoop-zapps, 1
bucket\BitstreamVeraSansMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\BitstreamVeraSansMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\BitstreamVeraSansMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Bitwarden-Portable.json, ACooper81/scoop-apps, 1
bucket\BlackBird-Player.json, kkzzhizhou/scoop-zapps, 1
bucket\Blender-Portable.json, ACooper81/scoop-apps, 0
bucket\BlueLifeHostsEditor.json, kkzzhizhou/scoop-zapps, 1
bucket\BlueStacks5-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\Bongocat-Mver.json, Weidows-projects/scoop-3rd, 1
bucket\BootRacer-Install.json, ACooper81/scoop-apps, 0
bucket\Bootice.json, kkzzhizhou/scoop-zapps, 1
bucket\BowPad.json, ViCrack/scoop-bucket, 1
bucket\Brave-Portable.json, ACooper81/scoop-apps, 0
bucket\Brave-UserInstall.json, ACooper81/scoop-apps, 1
bucket\BraveBeta-Portable.json, ACooper81/scoop-apps, 1
bucket\BraveNightly-Portable.json, ACooper81/scoop-apps, 1
bucket\BrickLinkStudio-Install.json, ACooper81/scoop-apps, 0
bucket\BrickLinkStudio-Portable.json, ACooper81/scoop-apps, 0
bucket\BrowserTamer-Portable.json, ACooper81/scoop-apps, 1
bucket\BrutalityExtractor.json, Weidows-projects/scoop-3rd, 1
bucket\BulkCrapUninstaller-Portable.json, ACooper81/scoop-apps, 1
bucket\BurntToast-PSModule.json, ACooper81/scoop-apps, 1
bucket\ByPass.json, kkzzhizhou/scoop-zapps, 0
bucket\CCleaner-Portable.json, ACooper81/scoop-apps, 0
bucket\CCleaner540.json, zhoujin7/tomato, 0
bucket\CJK-character-count.json, ygguorun/scoop-bucket, 1
bucket\CMWTAT_Digital_Edition.json, batkiz/backit, 1
bucket\COMTool.json, ygguorun/scoop-bucket, 1
bucket\CTTWindowsUtility-Script.json, ACooper81/scoop-apps, 0
bucket\CabMaker.json, Weidows-projects/scoop-3rd, 1
bucket\Cache-Relocator.json, kkzzhizhou/scoop-zapps, 0
bucket\Caffeine-Portable.json, ACooper81/scoop-apps, 0
bucket\CapsLockIndicator.json, zhoujin7/tomato, 1
bucket\Capture2Text-Portable.json, ACooper81/scoop-apps, 0
bucket\CarotDAV-Portable.json, ACooper81/scoop-apps, 0
bucket\Cascadia-Code.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CascadiaCode-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CascadiaCode-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CascadiaCode-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CascadiaCode.json, KnotUntied/scoop-fonts, 1
bucket\CascadiaCodePL.json, everyx/scoop-bucket, 1
bucket\CascadiaMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CascadiaMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CascadiaMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CascadiaMono.json, KnotUntied/scoop-fonts, 1
bucket\CascadiaMonoPL.json, everyx/scoop-bucket, 1
bucket\CefDetector.json, ygguorun/scoop-bucket, 1
bucket\CefDetectorX.json, Weidows-projects/scoop-3rd, 1
bucket\CenterTaskbar-Portable.json, ACooper81/scoop-apps, 1
bucket\Chakra-Petch.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Charles.json, chawyehsu/dorado, 0
bucket\Charm.json, batkiz/backit, 1
bucket\Charmonman.json, matthewjberger/scoop-nerd-fonts, 0
bucket\ChatALL-Portable.json, ACooper81/scoop-apps, 1
bucket\ChatBox-Portable.json, ACooper81/scoop-apps, 1
bucket\ChatBox.json, DoveBoy/Apps, 1
bucket\ChenYuLuoYen-Thin.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Chocolatey-Portable.json, ACooper81/scoop-apps, 0
bucket\Cinebench-R15.json, AkariiinMKII/Scoop4kariiin, 1
bucket\Cinebench-R20.json, AkariiinMKII/Scoop4kariiin, 1
bucket\Cinebench-R23.json, AkariiinMKII/Scoop4kariiin, 1
bucket\Clash-for-Windows_Chinese.json, Weidows-projects/scoop-3rd, 1
bucket\ClashXW.json, ygguorun/scoop-bucket, 1
bucket\ClashforWindows.json, AkariiinMKII/Scoop4kariiin, 0
bucket\CloneApp-Portable.json, ACooper81/scoop-apps, 1
bucket\CloudflareSpeedTest.json, ygguorun/scoop-bucket, 1
bucket\CodeNewRoman-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CodeNewRoman-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CodeNewRoman-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ComIntRep.json, kkzzhizhou/scoop-zapps, 1
bucket\ComfyUI-Portable.json, ACooper81/scoop-apps, 0
bucket\ComfyUIManager-Portable.json, ACooper81/scoop-apps, 1
bucket\ComicShannsMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ComicShannsMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ComicShannsMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CommitMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CommitMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CommitMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CompactGUI-Portable.json, ACooper81/scoop-apps, 1
bucket\CompileAHK.json, kkzzhizhou/scoop-zapps, 1
bucket\ComputerManagementDsc-PSModule.json, ACooper81/scoop-apps, 1
bucket\ContextMenuManager-Portable.json, ACooper81/scoop-apps, 1
bucket\ContextMenuManager.json, kkzzhizhou/scoop-zapps, 1
bucket\ContextMenuMgr.json, zhoujin7/tomato, 0
bucket\ControlUWP-Portable.json, ACooper81/scoop-apps, 1
bucket\ConvertFrom-SourceTable.json, brian6932/dank-scoop, 1
bucket\Coodesker-Portable.json, ACooper81/scoop-apps, 0
bucket\Copies.json, kkzzhizhou/scoop-zapps, 1
bucket\CorelDraw.json, kkzzhizhou/scoop-zapps, 1
bucket\CorelVideoStudio.json, kkzzhizhou/scoop-zapps, 1
bucket\Cousine-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Cousine-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Cousine-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\CryengineLauncher-Install.json, ACooper81/scoop-apps, 0
bucket\CryengineLauncher-UserInstall.json, ACooper81/scoop-apps, 0
bucket\CrystalMark-Retro-Aoi.json, AkariiinMKII/Scoop4kariiin, 0
bucket\CuteHttpFileServer-Portable.json, ACooper81/scoop-apps, 0
bucket\CuteHttpFileServerGUI-Portable.json, ACooper81/scoop-apps, 0
bucket\D2Coding-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\D2Coding-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\D2Coding-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DBeaver-Portable.json, ACooper81/scoop-apps, 1
bucket\DDMonitor.json, ygguorun/scoop-bucket, 1
bucket\DHCPServer-Portable.json, ACooper81/scoop-apps, 0
bucket\DLSSSwapper-Portable.json, ACooper81/scoop-apps, 1
bucket\DNSControlCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\DNSJumper-Portable.json, ACooper81/scoop-apps, 0
bucket\DNSProxyCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\DYMOConnect-Install.json, ACooper81/scoop-apps, 0
bucket\DaddyTimeMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DaddyTimeMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DaddyTimeMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DadroitJsonViewer-Portable.json, ACooper81/scoop-apps, 0
bucket\DanmakuFactory.json, cc713/ownscoop, 1
bucket\Darker-Portable.json, ACooper81/scoop-apps, 1
bucket\Database.NET-Portable.json, ACooper81/scoop-apps, 0
bucket\DeezerDesktop-Portable.json, ACooper81/scoop-apps, 0
bucket\DeezerDesktop-UserInstall.json, ACooper81/scoop-apps, 0
bucket\Defraggler-Portable.json, ACooper81/scoop-apps, 0
bucket\DejaVuSansMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DejaVuSansMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DejaVuSansMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Delugia-Mono-Nerd-Font-Complete.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Delugia-Mono-Nerd-Font.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Delugia-Nerd-Font-Book.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Delugia-Nerd-Font-Complete.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Delugia-Nerd-Font.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DepartureMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DepartureMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DepartureMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dependency-Walker.json, Weidows-projects/scoop-3rd, 0
bucket\DeskDock.json, kkzzhizhou/scoop-zapps, 0
bucket\DevEco-Studio.json, Weidows-projects/scoop-3rd, 0
bucket\DevToys-Install.json, ACooper81/scoop-apps, 1
bucket\Dexios.json, brian6932/dank-scoop, 1
bucket\DexiosGUI.json, brian6932/dank-scoop, 1
bucket\Digital-Rights-Activation-Tools.json, Paxxs/Cluttered-bucket, 0
bucket\DigitalMate2D.json, Weidows-projects/scoop-3rd, 1
bucket\DirectX-Repair.json, Paxxs/Cluttered-bucket, 0
bucket\Discord-Portable.json, ACooper81/scoop-apps, 1
bucket\DismPlusPlus-Portable.json, ACooper81/scoop-apps, 1
bucket\DisplayDriverUninstaller-Portable.json, ACooper81/scoop-apps, 0
bucket\DnsTools.json, Weidows-projects/scoop-3rd, 1
bucket\DocBox.json, hu3rror/scoop-muggle, 1
bucket\Document-TagExplorer.json, kkzzhizhou/scoop-zapps, 1
bucket\DotNetVersions.json, yuusakuri/scoop-bucket, 1
bucket\DoubleKiller.json, zhoujin7/tomato, 0
bucket\DrFolder-Portable.json, ACooper81/scoop-apps, 0
bucket\Draw.io-Portable.json, ACooper81/scoop-apps, 1
bucket\Dream-Han-Sans-CN.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Sans-HK.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Sans-JP.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Sans-KR.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Sans-TW.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Sans.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Serif-CN.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Serif-HK.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Serif-JP.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Serif-KR.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Serif-TW.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Dream-Han-Serif.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DriverGenius.json, kkzzhizhou/scoop-zapps, 1
bucket\DriverStoreExplorer-Portable.json, ACooper81/scoop-apps, 1
bucket\DriverTalent.json, kkzzhizhou/scoop-zapps, 1
bucket\DroidSansMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DroidSansMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DroidSansMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\DropPoint-Portable.json, ACooper81/scoop-apps, 1
bucket\EPUBCheck-Portable.json, ACooper81/scoop-apps, 1
bucket\ESETSysInspector-Portable.json, ACooper81/scoop-apps, 0
bucket\EarTrumpet-Portable.json, ACooper81/scoop-apps, 0
bucket\EassosRestore.json, kkzzhizhou/scoop-zapps, 0
bucket\EasyBCD.json, kkzzhizhou/scoop-zapps, 1
bucket\EasyLPAC.json, NyaMisty/scoop_bucket_misty, 1
bucket\EasySpider.json, Weidows-projects/scoop-3rd, 1
bucket\EasyWindowSwitcher.json, ygguorun/scoop-bucket, 1
bucket\Edge-Webdriver-Stable.json, Weidows-projects/scoop-3rd, 0
bucket\Edge-Webdriver.json, Weidows-projects/scoop-3rd, 0
bucket\EdgeDeflector-Portable.json, ACooper81/scoop-apps, 1
bucket\Effidit.json, ygguorun/scoop-bucket, 0
bucket\Elasticsearch6.json, zhoujin7/tomato, 0
bucket\Elasticsearch7.json, zhoujin7/tomato, 0
bucket\EleDo.json, brian6932/dank-scoop, 1
bucket\ElectronicObserver.json, Darkatse/Scoop-KanColle, 1
bucket\ElevenClock-Portable.json, ACooper81/scoop-apps, 1
bucket\EmbyServer-Portable.json, ACooper81/scoop-apps, 1
bucket\EmbyServer.json, AkariiinMKII/Scoop4kariiin, 1
bucket\EmbyTheater-Portable.json, ACooper81/scoop-apps, 1
bucket\EmbyTheater.json, ygguorun/scoop-bucket, 1
bucket\EnableLoopbackUtility-Portable.json, ACooper81/scoop-apps, 0
bucket\EnableLoopbackUtility.json, everyx/scoop-bucket, 0
bucket\EncodeGUI-UserInstall.json, ACooper81/scoop-apps, 0
bucket\EnergyStar.json, batkiz/backit, 1
bucket\EnigmaVirtualBox-Portable.json, ACooper81/scoop-apps, 0
bucket\EnigmaVirtualBox.json, kkzzhizhou/scoop-zapps, 1
bucket\EnvyCodeR-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\EnvyCodeR-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\EnvyCodeR-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\EnvyUpdate-Portable.json, ACooper81/scoop-apps, 1
bucket\EpicGamesLauncher-Install.json, ACooper81/scoop-apps, 0
bucket\EpicGamesLauncher-Portable.json, ACooper81/scoop-apps, 0
bucket\Eraser5-Portable.json, ACooper81/scoop-apps, 0
bucket\Eros-FE.json, batkiz/backit, 1
bucket\EventLogViewer-Portable.json, ACooper81/scoop-apps, 0
bucket\ExVR.json, Weidows-projects/scoop-3rd, 1
bucket\ExifPilot-Portable.json, ACooper81/scoop-apps, 0
bucket\ExplorerPatcher-Install.json, ACooper81/scoop-apps, 0
bucket\ExtendedGodMode-Portable.json, ACooper81/scoop-apps, 0
bucket\FAT32FormatGUI-Portable.json, ACooper81/scoop-apps, 0
bucket\FFMetrics.json, ygguorun/scoop-bucket, 1
bucket\FFRename-pro.json, hu3rror/scoop-muggle, 0
bucket\FFRenamePro.json, Paxxs/Cluttered-bucket, 0
bucket\FLiNGTrainer.json, batkiz/backit, 0
bucket\FXDrawTools-Install.json, ACooper81/scoop-apps, 0
bucket\Fahkwang.json, matthewjberger/scoop-nerd-fonts, 0
bucket\FanControl-Portable.json, ACooper81/scoop-apps, 0
bucket\FantasqueSansMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FantasqueSansMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FantasqueSansMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FastCopy-M.json, Paxxs/Cluttered-bucket, 1
bucket\FerdiumNightly-Portable.json, ACooper81/scoop-apps, 1
bucket\Fido-PSScript.json, ACooper81/scoop-apps, 1
bucket\FileLocatorPro.json, kkzzhizhou/scoop-zapps, 1
bucket\FileMenuTools-Portable.json, ACooper81/scoop-apps, 0
bucket\FileMenuTools.json, ViCrack/scoop-bucket, 0
bucket\FileMonitor.json, ygguorun/scoop-bucket, 0
bucket\Files-Install.json, ACooper81/scoop-apps, 0
bucket\FilesInspector-Install.json, ACooper81/scoop-apps, 0
bucket\FilesInspector-Portable.json, ACooper81/scoop-apps, 0
bucket\FingerGo.json, ygguorun/scoop-bucket, 1
bucket\FiraCode-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FiraCode-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FiraCode-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FiraCode-Script.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FiraCode.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FiraMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FiraMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FiraMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Firefox-Install.json, ACooper81/scoop-apps, 0
bucket\Firefox-Portable.json, ACooper81/scoop-apps, 0
bucket\FirefoxBeta-Portable.json, ACooper81/scoop-apps, 0
bucket\FirefoxDeveloper-Portable.json, ACooper81/scoop-apps, 0
bucket\FirefoxNightly-Portable.json, ACooper81/scoop-apps, 0
bucket\FixWin10-Portable.json, ACooper81/scoop-apps, 0
bucket\FixWin11-Portable.json, ACooper81/scoop-apps, 0
bucket\FlashpointInfinity-Portable.json, ACooper81/scoop-apps, 0
bucket\FlickerList.json, kkzzhizhou/scoop-zapps, 0
bucket\FlowLauncher-Portable.json, ACooper81/scoop-apps, 1
bucket\FluentReader-Portable.json, ACooper81/scoop-apps, 1
bucket\FluentSearch-Portable.json, ACooper81/scoop-apps, 0
bucket\FluentTerminal-UserInstall.json, ACooper81/scoop-apps, 1
bucket\Flutter-Coolapk.json, Paxxs/Cluttered-bucket, 0
bucket\FolderMonitor-Portable.json, ACooper81/scoop-apps, 0
bucket\Font-Awesome.json, matthewjberger/scoop-nerd-fonts, 1
bucket\FontMod.json, ygguorun/scoop-bucket, 1
bucket\ForceBindIPCLI-Portable.json, ACooper81/scoop-apps, 0
bucket\FreeFileSync-Portable.json, ACooper81/scoop-apps, 0
bucket\FreeFileSync.json, cc713/ownscoop, 0
bucket\FreeMove-Portable.json, ACooper81/scoop-apps, 1
bucket\FreeSpaceWipe-Portable.json, ACooper81/scoop-apps, 0
bucket\FreeTube-Portable.json, ACooper81/scoop-apps, 1
bucket\FreezeToStock-Portable.json, ACooper81/scoop-apps, 1
bucket\FrpcGUI.json, kkzzhizhou/scoop-zapps, 1
bucket\GARbro-Mod.json, cc713/ownscoop, 1
bucket\GIMP-Portable.json, ACooper81/scoop-apps, 0
bucket\GImageX-Portable.json, ACooper81/scoop-apps, 0
bucket\GOGGalaxy-Install.json, ACooper81/scoop-apps, 0
bucket\GOGGalaxy-Portable.json, ACooper81/scoop-apps, 0
bucket\GPUShark.json, kkzzhizhou/scoop-zapps, 0
bucket\GUI.for.SingBox.json, Weidows-projects/scoop-3rd, 1
bucket\Game-Cheats-Manager.json, Weidows-projects/scoop-3rd, 1
bucket\GameMakerStudio2-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\GeekUninstaller-Portable.json, ACooper81/scoop-apps, 0
bucket\GeistMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GeistMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GeistMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GitHub520.json, Weidows-projects/scoop-3rd, 1
bucket\GitHubDesktop-Install.json, ACooper81/scoop-apps, 0
bucket\GitHubDesktop-Portable.json, ACooper81/scoop-apps, 0
bucket\GitHubDesktop-UserInstall.json, ACooper81/scoop-apps, 0
bucket\GliderCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\GlowSansJ-Compressed.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansJ-Condensed.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansJ-Extended.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansJ-Normal.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansJ-Wide.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansSC-Compressed.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansSC-Condensed.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansSC-Extended.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansSC-Normal.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansSC-Wide.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansTC-Compressed.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansTC-Condensed.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansTC-Extended.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansTC-Normal.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GlowSansTC-Wide.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Go-Mono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Go-Mono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Go-Mono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Gohu-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Gohu-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Gohu-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\GoogleChrome-Install.json, ACooper81/scoop-apps, 0
bucket\GoogleChrome-Portable.json, ACooper81/scoop-apps, 0
bucket\GoogleChromeBeta-Portable.json, ACooper81/scoop-apps, 0
bucket\GoogleChromeCanary-Portable.json, ACooper81/scoop-apps, 0
bucket\GoogleChromeDev-Portable.json, ACooper81/scoop-apps, 0
bucket\Grub2.json, kkzzhizhou/scoop-zapps, 0
bucket\GuiCompletion-PSModule.json, ACooper81/scoop-apps, 0
bucket\HBuilder.json, zhoujin7/tomato, 0
bucket\HBuilderX-Alpha.json, zhoujin7/tomato, 0
bucket\HBuilderX-Full-Alpha.json, zhoujin7/tomato, 0
bucket\HBuilderX-Full.json, zhoujin7/tomato, 0
bucket\HDCleaner-Portable.json, ACooper81/scoop-apps, 0
bucket\HDTunePro.json, kkzzhizhou/scoop-zapps, 1
bucket\HWIDGEN.json, kkzzhizhou/scoop-zapps, 1
bucket\HWiNFO-Portable.json, ACooper81/scoop-apps, 0
bucket\Hack-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Hack-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Hack-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\HakushuGyosyoOiwai.json, matthewjberger/scoop-nerd-fonts, 0
bucket\HakushuKaisyoOiwai.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Hanamin.json, matthewjberger/scoop-nerd-fonts, 0
bucket\HandBrake-Portable.json, ACooper81/scoop-apps, 1
bucket\HandWrite.json, Weidows-projects/scoop-3rd, 1
bucket\HandyWinGet-Portable.json, ACooper81/scoop-apps, 1
bucket\HardDiskSentinel.json, hu3rror/scoop-muggle, 0
bucket\Hasklig-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Hasklig-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Hasklig-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Hasklig.json, matthewjberger/scoop-nerd-fonts, 1
bucket\He3.json, Weidows-projects/scoop-3rd, 0
bucket\HeavyData-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\HeavyData-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\HeavyData-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\HelloFont.old.json, Paxxs/Cluttered-bucket, 0
bucket\Hermit-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Hermit-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Hermit-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\HeroicGameLauncher-Portable.json, ACooper81/scoop-apps, 1
bucket\HiBitUninstaller-Portable.json, ACooper81/scoop-apps, 0
bucket\Hitomi-Downloader.json, cc713/ownscoop, 1
bucket\HostsMan-Portable.json, ACooper81/scoop-apps, 1
bucket\HostsMgrCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\HueSync-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\HueSync-Portable.json, ACooper81/scoop-apps, 0
bucket\I-Ming.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexMono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans-Arabic.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans-Condensed.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans-Devanagari.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans-Hebrew.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans-JP.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans-KR.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans-Thai-Looped.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans-Thai.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSans.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IBMPlexSerif.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ICQ-Portable.json, ACooper81/scoop-apps, 0
bucket\IDA-Pro.64.json, Paxxs/Cluttered-bucket, 0
bucket\IMMagicPartitionResizer-Portable.json, ACooper81/scoop-apps, 0
bucket\IMMagicPartitionResizerPro-Portable.json, ACooper81/scoop-apps, 0
bucket\IObitSoftwareUpdater-Portable.json, ACooper81/scoop-apps, 0
bucket\IPAex-Gothic.json, matthewjberger/scoop-nerd-fonts, 0
bucket\IPAex-Mincho.json, matthewjberger/scoop-nerd-fonts, 0
bucket\IPVanish-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\IPVanish-Portable.json, ACooper81/scoop-apps, 0
bucket\Icalingua-plus-plus.json, batkiz/backit, 1
bucket\ImDiskToolkit.json, cc713/ownscoop, 0
bucket\ImTip.json, ygguorun/scoop-bucket, 0
bucket\ImageGlass-Portable.json, ACooper81/scoop-apps, 1
bucket\ImageMagick-portable-Q16-HDRI.json, Weidows-projects/scoop-3rd, 0
bucket\ImgBurn-Portable.json, ACooper81/scoop-apps, 1
bucket\Inconsolata-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Inconsolata-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Inconsolata-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\InconsolataGo-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\InconsolataGo-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\InconsolataGo-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\InconsolataLGC-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\InconsolataLGC-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\InconsolataLGC-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IniModCLI-Portable.json, ACooper81/scoop-apps, 0
bucket\Inkscape-Portable.json, ACooper81/scoop-apps, 0
bucket\InnoExtractor.json, kkzzhizhou/scoop-zapps, 0
bucket\Intel-One-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IntelExtremeTuningUtility-Install.json, ACooper81/scoop-apps, 0
bucket\IntelOneMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IntelOneMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IntelOneMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IntelligentNavalGun.json, Darkatse/Scoop-KanColle, 1
bucket\Iobitdriverbooster.json, echoiron/echo-scoop, 0
bucket\Iosevka-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Iosevka-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Iosevka-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IosevkaTerm-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IosevkaTerm-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IosevkaTerm-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IosevkaTermSlab-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IosevkaTermSlab-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IosevkaTermSlab-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\IrfanView-Install.json, ACooper81/scoop-apps, 0
bucket\IrfanView-Portable.json, ACooper81/scoop-apps, 0
bucket\IrfanViewPlugins-Install.json, ACooper81/scoop-apps, 0
bucket\IrfaniewWithPlugins-Portable.json, ACooper81/scoop-apps, 0
bucket\Irfanview-plugins.json, cc713/ownscoop, 0
bucket\JJDown.json, Paxxs/Cluttered-bucket, 0
bucket\JMComic-qt.json, cc713/ownscoop, 1
bucket\JSONStreamEditorCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\Jacket-Portable.json, ACooper81/scoop-apps, 1
bucket\Java-RPG-Maker-MV-Decrypter.json, cc713/ownscoop, 1
bucket\Jeenpi.json, Weidows-projects/scoop-3rd, 0
bucket\Jellyfin-Portable.json, ACooper81/scoop-apps, 0
bucket\JellyfinMediaPlayer-Portable.json, ACooper81/scoop-apps, 1
bucket\JellyfinMpvShim-Portable.json, ACooper81/scoop-apps, 1
bucket\JellyfinServer-Portable.json, ACooper81/scoop-apps, 0
bucket\JetBrainsMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\JetBrainsMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\JetBrainsMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\JianYingSRT.json, ygguorun/scoop-bucket, 1
bucket\JohnsBackgroundSwitcher-Portable.json, ACooper81/scoop-apps, 0
bucket\JumpToFolder.json, hu3rror/scoop-muggle, 1
bucket\Jvedio.json, Weidows-projects/scoop-3rd, 1
bucket\K2D.json, matthewjberger/scoop-nerd-fonts, 0
bucket\KCCacheProxy.json, Darkatse/Scoop-KanColle, 1
bucket\KDEConnect-Portable.json, ACooper81/scoop-apps, 0
bucket\KMS_VL_All_AiO-Portable.json, ACooper81/scoop-apps, 1
bucket\KanColleViewer.json, Darkatse/Scoop-KanColle, 1
bucket\Kangaroo-Portable.json, ACooper81/scoop-apps, 1
bucket\Kanit.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Kdenlive-Portable.json, ACooper81/scoop-apps, 0
bucket\KeePassXC-Portable.json, ACooper81/scoop-apps, 1
bucket\Kemono-scraper.json, Weidows-projects/scoop-3rd, 1
bucket\Ketarin-Portable.json, ACooper81/scoop-apps, 0
bucket\KeySound.json, Weidows-projects/scoop-3rd, 1
bucket\KeybMap64.json, Paxxs/Cluttered-bucket, 0
bucket\KeymouseGo.json, DoveBoy/Apps, 1
bucket\KikoPlay.json, hu3rror/scoop-muggle, 1
bucket\KindleSend.json, kkzzhizhou/scoop-zapps, 1
bucket\KindleUnpack.json, kkzzhizhou/scoop-zapps, 1
bucket\KitX.json, Weidows-projects/scoop-3rd, 1
bucket\Klee-One.json, matthewjberger/scoop-nerd-fonts, 0
bucket\KoHo.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Kodchasan.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Kodi-Portable.json, ACooper81/scoop-apps, 0
bucket\KoodoReader-Portable.json, ACooper81/scoop-apps, 1
bucket\Krita-Portable.json, ACooper81/scoop-apps, 0
bucket\Krub.json, matthewjberger/scoop-nerd-fonts, 0
bucket\KryptorGUI.json, brian6932/dank-scoop, 1
bucket\KugouMusic.json, Weidows-projects/scoop-3rd, 0
bucket\LDPlayer-Portable.json, ACooper81/scoop-apps, 0
bucket\LDWin-Portable.json, ACooper81/scoop-apps, 1
bucket\LGPO-Portable.json, ACooper81/scoop-apps, 0
bucket\LLFTOOL.json, kkzzhizhou/scoop-zapps, 1
bucket\LM-Studio.json, Weidows-projects/scoop-3rd, 0
bucket\LXGW-Bright-GB.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGW-Bright-TC.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGW-Bright.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWNeoXiHei.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWNeoZhiSong.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWWenKai.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWWenKaiGB.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWWenKaiMono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWWenKaiMonoGB.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWWenKaiMonoTC.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWWenKaiScreen.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWWenKaiScreenR.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LXGWWenKaiTC.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LanguageTool-Portable.json, ACooper81/scoop-apps, 0
bucket\Lapce-Portable.json, ACooper81/scoop-apps, 1
bucket\Lato.json, KnotUntied/scoop-fonts, 0
bucket\LeagueMono-static.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LeagueMono-variable.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Lekton-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Lekton-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Lekton-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LetsView.json, kkzzhizhou/scoop-zapps, 0
bucket\LiberationMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LiberationMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LiberationMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LibreOffice-Portable.json, ACooper81/scoop-apps, 0
bucket\LibreWolf-Portable.json, ACooper81/scoop-apps, 0
bucket\LightProxy.json, Paxxs/Cluttered-bucket, 1
bucket\Lilex-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Lilex-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Lilex-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\LinkEase.json, ygguorun/scoop-bucket, 0
bucket\LinkShellExtension-Install.json, ACooper81/scoop-apps, 0
bucket\Lively-Wallpaper.json, Weidows-projects/scoop-3rd, 1
bucket\LivelyWallpaper-Portable.json, ACooper81/scoop-apps, 1
bucket\LockHunter-Portable.json, ACooper81/scoop-apps, 0
bucket\LogiOptionsPlus-Install.json, ACooper81/scoop-apps, 0
bucket\LogitechOptions-Install.json, ACooper81/scoop-apps, 0
bucket\LogitechOptions-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\LogitechSetPoint-Install.json, ACooper81/scoop-apps, 0
bucket\LogitechUnifyingSoftware-Install.json, ACooper81/scoop-apps, 0
bucket\LuDaShi.json, kkzzhizhou/scoop-zapps, 1
bucket\LunaTranslator.json, cc713/ownscoop, 1
bucket\Lunacy-Portable.json, ACooper81/scoop-apps, 0
bucket\LuxCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\LyricTools.json, ygguorun/scoop-bucket, 0
bucket\MAS-Portable.json, ACooper81/scoop-apps, 1
bucket\MBoxViewer-Portable.json, ACooper81/scoop-apps, 1
bucket\MP4DownloaderPro-Install.json, ACooper81/scoop-apps, 0
bucket\MPC-BE-Install.json, ACooper81/scoop-apps, 0
bucket\MPC-BE-Portable.json, ACooper81/scoop-apps, 0
bucket\MPlus-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\MPlus-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\MPlus-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\MSEdgeRedirect-Portable.json, ACooper81/scoop-apps, 1
bucket\MajsoulPaipuAnalyzer.json, ygguorun/scoop-bucket, 1
bucket\MajsoulPlus.json, ygguorun/scoop-bucket, 1
bucket\Mali.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Maple-Mono-NF-CN.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Maple-Mono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Maple-Mono-autohint.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Maple-Mono-otf.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Maple-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Martian-Mono-otf.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Martian-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\MartianMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\MartianMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\MartianMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Mechvibes-Portable.json, ACooper81/scoop-apps, 1
bucket\MediaCreationTool-Portable.json, ACooper81/scoop-apps, 1
bucket\MediaDownloader.json, couleur-tweak-tips/utils, 1
bucket\MediaInfo.NET-Portable.json, ACooper81/scoop-apps, 1
bucket\MediaMonkey5-Portable.json, ACooper81/scoop-apps, 0
bucket\Meld-Portable.json, ACooper81/scoop-apps, 0
bucket\MemoTrace.json, ygguorun/scoop-bucket, 1
bucket\MergeGen.json, kkzzhizhou/scoop-zapps, 1
bucket\MeshCommander-Portable.json, ACooper81/scoop-apps, 0
bucket\Meslo-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Meslo-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Meslo-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\MiFlash-with-BL_Unlocker.json, Weidows-projects/scoop-3rd, 0
bucket\MiSans.json, hu3rror/scoop-muggle, 0
bucket\MiTeCSQLiteQuery-Portable.json, ACooper81/scoop-apps, 0
bucket\MiTeCTaskManagerDeLuxe-Portable.json, ACooper81/scoop-apps, 0
bucket\Microsoft.NETCoreRuntime-Install.json, ACooper81/scoop-apps, 0
bucket\Microsoft.NETCoreRuntimeLTS-Install.json, ACooper81/scoop-apps, 0
bucket\Microsoft.NETDesktopRuntime-Install.json, ACooper81/scoop-apps, 0
bucket\Microsoft.NETDesktopRuntimeLTS-Install.json, ACooper81/scoop-apps, 0
bucket\Microsoft.NETFramework3.5-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\MicrosoftEdge-Install.json, ACooper81/scoop-apps, 0
bucket\MicrosoftEdge-Portable.json, ACooper81/scoop-apps, 0
bucket\MicrosoftEdge-dev-portable.json, Weidows-projects/scoop-3rd, 1
bucket\MicrosoftEdgeBeta-Portable.json, ACooper81/scoop-apps, 0
bucket\MicrosoftEdgeCanary-Portable.json, ACooper81/scoop-apps, 0
bucket\MicrosoftEdgeDev-Portable.json, ACooper81/scoop-apps, 0
bucket\MicrosoftOffice365-Install.json, ACooper81/scoop-apps, 1
bucket\MicrosoftOneDrive-Install.json, ACooper81/scoop-apps, 0
bucket\MicrosoftOneDrive-UserInstall.json, ACooper81/scoop-apps, 0
bucket\MicrosoftOneDriveEnterprise-Install.json, ACooper81/scoop-apps, 0
bucket\MicrosoftOneDriveEnterprise-UserInstall.json, ACooper81/scoop-apps, 0
bucket\MicrosoftOneDriveInsiders-UserInstall.json, ACooper81/scoop-apps, 0
bucket\MicrosoftTeams-Portable.json, ACooper81/scoop-apps, 0
bucket\MicrosoftTeams-UserInstall.json, ACooper81/scoop-apps, 0
bucket\MicrosoftTeamsWorkOrSchool-Portable.json, ACooper81/scoop-apps, 0
bucket\MicrosoftVisualCppRedist-Install.json, ACooper81/scoop-apps, 0
bucket\MicrosoftVisualStudioCommunity2019-Install.json, ACooper81/scoop-apps, 0
bucket\MicrosoftVisualStudioCommunity2022-Install.json, ACooper81/scoop-apps, 0
bucket\MicrosoftYaHeiMono.json, everyx/scoop-bucket, 0
bucket\Mitr.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Mixxx-Portable.json, ACooper81/scoop-apps, 0
bucket\ModOrganizer.json, Weidows-projects/scoop-3rd, 1
bucket\ModernFlyouts-Portable.json, ACooper81/scoop-apps, 1
bucket\Monaspace-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monaspace-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monaspace-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monaspace.json, matthewjberger/scoop-nerd-fonts, 1
bucket\MonitorOff.json, ViCrack/scoop-bucket, 0
bucket\Monocraft-Nerd-Font.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monocraft-no-ligatures.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monocraft-otf.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monocraft.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monofur-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monofur-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monofur-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monoid-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monoid-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Monoid-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Mononoki-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Mononoki-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Mononoki-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Moo0VideoConverter-Portable.json, ACooper81/scoop-apps, 0
bucket\MoonPlayer.json, cc713/ownscoop, 1
bucket\Moonlight-Portable.json, ACooper81/scoop-apps, 1
bucket\MouseWithoutBorders-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\Multrin-Portable.json, ACooper81/scoop-apps, 1
bucket\MuseScore-Portable.json, ACooper81/scoop-apps, 1
bucket\MusicBee-Portable.json, ACooper81/scoop-apps, 0
bucket\MusicBrainzPicard-Portable.json, ACooper81/scoop-apps, 0
bucket\MusicTag.json, hu3rror/scoop-muggle, 0
bucket\MusicTools.json, SayCV/scoop-cvp, 1
bucket\MyDockFinder.json, Weidows-projects/scoop-3rd, 1
bucket\MyJoy.json, Weidows-projects/scoop-3rd, 0
bucket\N0vaDesktop.json, Weidows-projects/scoop-3rd, 0
bucket\NTLite-Portable.json, ACooper81/scoop-apps, 0
bucket\NVUpdater-Portable.json, ACooper81/scoop-apps, 0
bucket\Nacos.json, zhoujin7/tomato, 1
bucket\NanaZip-Portable.json, ACooper81/scoop-apps, 1
bucket\NavicatPremium.json, kkzzhizhou/scoop-zapps, 1
bucket\NegativeEncoder.json, ygguorun/scoop-bucket, 1
bucket\NerdFontsSymbolsOnly.json, matthewjberger/scoop-nerd-fonts, 1
bucket\NetSetMan-Portable.json, ACooper81/scoop-apps, 0
bucket\Netch-Portable.json, ACooper81/scoop-apps, 1
bucket\NetworkDriveControl-ManualInstall.json, ACooper81/scoop-apps, 0
bucket\NilesoftShell-Portable.json, ACooper81/scoop-apps, 0
bucket\Niramit.json, matthewjberger/scoop-nerd-fonts, 0
bucket\NirsoftAdvancedRun-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftControlMyMonitor-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftCurrPorts-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftFolderChangesView-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftInstalledAppView-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftMultiMonitorTool-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftNetworkOpenedFiles-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftRegFromApp-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftRegistryChangesView-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftUninstallView-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftWifiInfoView-Portable.json, ACooper81/scoop-apps, 0
bucket\NirsoftWirelessNetworkWatcher-Portable.json, ACooper81/scoop-apps, 0
bucket\NitroShare-Portable.json, ACooper81/scoop-apps, 0
bucket\NoMachine-Install.json, ACooper81/scoop-apps, 0
bucket\NoMansSkySaveEditor-Portable.json, ACooper81/scoop-apps, 1
bucket\NordPass-Portable.json, ACooper81/scoop-apps, 0
bucket\NotCPUCores-Portable.json, ACooper81/scoop-apps, 1
bucket\Notepad3-mod.json, kkzzhizhou/scoop-zapps, 1
bucket\Notepads.json, AkariiinMKII/Scoop4kariiin, 1
bucket\Noto-CJK-Mega-OTC.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Noto-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Noto-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Noto-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Noto-Serif-CJK-Super-OTC.json, matthewjberger/scoop-nerd-fonts, 1
bucket\NoxPlayer.json, kkzzhizhou/scoop-zapps, 1
bucket\NpcGUI.json, kkzzhizhou/scoop-zapps, 1
bucket\NsEmuTools.json, hu3rror/scoop-muggle, 1
bucket\NuGetCLI-Portable.json, ACooper81/scoop-apps, 0
bucket\Nuclear-Portable.json, ACooper81/scoop-apps, 1
bucket\NvidiaDisplayDriver-Install.json, ACooper81/scoop-apps, 0
bucket\Nyushu-font.json, Weidows-projects/scoop-3rd, 1
bucket\OBSStudio-Portable.json, ACooper81/scoop-apps, 0
bucket\ONLYOFFICE-Portable.json, ACooper81/scoop-apps, 1
bucket\OandOAppBuster-Portable.json, ACooper81/scoop-apps, 0
bucket\OandORegEditor-Portable.json, ACooper81/scoop-apps, 0
bucket\OandOShutUp10-Portable.json, ACooper81/scoop-apps, 0
bucket\Oasis-Portable.json, ACooper81/scoop-apps, 1
bucket\Ocenaudio-Portable.json, ACooper81/scoop-apps, 0
bucket\Oculante-Portable.json, ACooper81/scoop-apps, 1
bucket\Office-Code-Pro.json, matthewjberger/scoop-nerd-fonts, 1
bucket\OfficeToolPlus-Portable.json, ACooper81/scoop-apps, 1
bucket\OfflineInsiderEnroll-Portable.json, ACooper81/scoop-apps, 1
bucket\Open-Sans.json, matthewjberger/scoop-nerd-fonts, 0
bucket\OpenBoard-Portable.json, ACooper81/scoop-apps, 1
bucket\OpenDyslexic-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\OpenDyslexic-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\OpenDyslexic-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\OpenHAB-Portable.json, ACooper81/scoop-apps, 0
bucket\OpenHardwareMonitor-Portable.json, ACooper81/scoop-apps, 0
bucket\OpenHardwareMonitorReport.json, brian6932/dank-scoop, 1
bucket\OpenHashTab.json, cc713/ownscoop, 1
bucket\OpenRA-Portable.json, ACooper81/scoop-apps, 1
bucket\OpenShellMenu-Install.json, ACooper81/scoop-apps, 1
bucket\Opera-Portable.json, ACooper81/scoop-apps, 0
bucket\OperaBeta-Portable.json, ACooper81/scoop-apps, 0
bucket\OperaDeveloper-Portable.json, ACooper81/scoop-apps, 0
bucket\OperaGX-Portable.json, ACooper81/scoop-apps, 0
bucket\OperatorMono.json, everyx/scoop-bucket, 1
bucket\Optimizer-Portable.json, ACooper81/scoop-apps, 1
bucket\OracleJDK11.json, zhoujin7/tomato, 0
bucket\OracleJDK17.json, zhoujin7/tomato, 0
bucket\OracleJDK8.json, zhoujin7/tomato, 0
bucket\OracleJRE8-Install.json, ACooper81/scoop-apps, 0
bucket\OracleJRE8-Portable.json, ACooper81/scoop-apps, 0
bucket\Overpass-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Overpass-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Overpass-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\PCmaster.json, Weidows-projects/scoop-3rd, 0
bucket\PDB2ePubChs.json, ygguorun/scoop-bucket, 1
bucket\PDFPatcher.json, echoiron/echo-scoop, 0
bucket\PDQDeploy-Install.json, ACooper81/scoop-apps, 0
bucket\PDQInventory-Install.json, ACooper81/scoop-apps, 0
bucket\PEAnatomist-Portable.json, ACooper81/scoop-apps, 0
bucket\PRemoteM-Portable.json, ACooper81/scoop-apps, 1
bucket\PS.Get-ChildItemColor.json, Paxxs/Cluttered-bucket, 0
bucket\PSGen-Portable.json, ACooper81/scoop-apps, 0
bucket\PSHash-Portable.json, ACooper81/scoop-apps, 0
bucket\PSScoop-PSModule.json, ACooper81/scoop-apps, 1
bucket\PSScriptTools-PSModule.json, ACooper81/scoop-apps, 0
bucket\PSWindowsUpdate-PSModule.json, ACooper81/scoop-apps, 0
bucket\PanDownloadServer.json, Paxxs/Cluttered-bucket, 0
bucket\PanJi-GreenTools.json, Weidows-projects/scoop-3rd, 0
bucket\PandaOCR.json, kkzzhizhou/scoop-zapps, 1
bucket\PartAssist.json, zhoujin7/tomato, 0
bucket\PatchMyPCHomeUpdater-Portable.json, ACooper81/scoop-apps, 0
bucket\Patchfluent-Portable.json, ACooper81/scoop-apps, 1
bucket\Pattaya.json, matthewjberger/scoop-nerd-fonts, 0
bucket\PeaZip-Portable.json, ACooper81/scoop-apps, 1
bucket\PeerBlock-Portable.json, ACooper81/scoop-apps, 0
bucket\PermissionsReporter-Portable.json, ACooper81/scoop-apps, 0
bucket\PersonalBackup-Portable.json, ACooper81/scoop-apps, 0
bucket\PhotoDemon-Portable.json, ACooper81/scoop-apps, 1
bucket\PhotoFiltre11.json, zhoujin7/tomato, 0
bucket\PhotoFiltre7.json, zhoujin7/tomato, 0
bucket\PhotoQt.json, cc713/ownscoop, 0
bucket\PhotoZoomPro.json, kkzzhizhou/scoop-zapps, 1
bucket\PicView-noRT.json, cc713/ownscoop, 1
bucket\PicoTorrent-Portable.json, ACooper81/scoop-apps, 1
bucket\PingFang.json, ygguorun/scoop-bucket, 0
bucket\PingFangHK.json, ygguorun/scoop-bucket, 0
bucket\PingFangSC.json, ygguorun/scoop-bucket, 0
bucket\PingFangTC.json, ygguorun/scoop-bucket, 0
bucket\PixBuilder.json, zhoujin7/tomato, 0
bucket\Pixeval.json, DoveBoy/Apps, 1
bucket\Playnite-Portable.json, ACooper81/scoop-apps, 1
bucket\PlexForWindows-Portable.json, ACooper81/scoop-apps, 0
bucket\PlexMediaPlayer-Portable.json, ACooper81/scoop-apps, 0
bucket\PlexMediaServer-Portable.json, ACooper81/scoop-apps, 0
bucket\Plexamp-Portable.json, ACooper81/scoop-apps, 0
bucket\Plus-Jakarta-Sans.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Pode-PSModule.json, ACooper81/scoop-apps, 1
bucket\PolicyPlus-Portable.json, ACooper81/scoop-apps, 0
bucket\PostImages-client-portable.json, Weidows-projects/scoop-3rd, 0
bucket\PotPlayer-Portable.json, ACooper81/scoop-apps, 0
bucket\PotPlayer-old.json, ygguorun/scoop-bucket, 0
bucket\PowerAutomateDesktop-Install.json, ACooper81/scoop-apps, 0
bucket\PowerBIDesktop-Install.json, ACooper81/scoop-apps, 0
bucket\PowerRun.json, ViCrack/scoop-bucket, 0
bucket\PowerShell-Install.json, ACooper81/scoop-apps, 1
bucket\PowerShell-Portable.json, ACooper81/scoop-apps, 1
bucket\PowerShellUniversal-Install.json, ACooper81/scoop-apps, 0
bucket\PowerToys-Install.json, ACooper81/scoop-apps, 1
bucket\PowerToys-Portable.json, ACooper81/scoop-apps, 1
bucket\PowerToys-UserInstall.json, ACooper81/scoop-apps, 1
bucket\PrivateWin10-Portable.json, ACooper81/scoop-apps, 1
bucket\Privatezilla-Portable.json, ACooper81/scoop-apps, 1
bucket\Privazer-Portable.json, ACooper81/scoop-apps, 0
bucket\Privexec-Portable.json, ACooper81/scoop-apps, 1
bucket\ProFont-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ProFont-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ProFont-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ProcessExplorer-Portable.json, ACooper81/scoop-apps, 0
bucket\ProcessExplorer.json, kkzzhizhou/scoop-zapps, 0
bucket\ProcessMonitor-Portable.json, ACooper81/scoop-apps, 0
bucket\ProggyClean-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ProggyClean-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ProggyClean-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\ProjectEye.json, Paxxs/Cluttered-bucket, 1
bucket\Prompt.json, matthewjberger/scoop-nerd-fonts, 0
bucket\ProperTree-Portable.json, ACooper81/scoop-apps, 1
bucket\PuTTY-Portable.json, ACooper81/scoop-apps, 0
bucket\PueueCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\PueuedCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\PulloversMacroCreator-Portable.json, ACooper81/scoop-apps, 1
bucket\PuloversMacroCreator-Portable.json, ACooper81/scoop-apps, 1
bucket\PureCodec.json, cc713/ownscoop, 0
bucket\PyDebloatX-Portable.json, ACooper81/scoop-apps, 1
bucket\QiDian.json, kkzzhizhou/scoop-zapps, 0
bucket\QtDesigner.json, zhoujin7/tomato, 1
bucket\QuickCPU-Portable.json, ACooper81/scoop-apps, 0
bucket\QuickCut.json, Weidows-projects/scoop-3rd, 1
bucket\QuickSwitch.json, ygguorun/scoop-bucket, 1
bucket\Quicker.json, zhoujin7/tomato, 0
bucket\R-Studio.json, kkzzhizhou/scoop-zapps, 1
bucket\RAMExpect.json, kkzzhizhou/scoop-zapps, 0
bucket\RDPWrapper-Portable.json, ACooper81/scoop-apps, 1
bucket\RDPWrapperMod-Portable.json, ACooper81/scoop-apps, 1
bucket\RM-ATKtools.json, Weidows-projects/scoop-3rd, 1
bucket\RSSGuard-Portable.json, ACooper81/scoop-apps, 1
bucket\RZGetCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\Radarr-Portable.json, ACooper81/scoop-apps, 1
bucket\RadarrDevelop-Portable.json, ACooper81/scoop-apps, 1
bucket\RaiDrive-Portable.json, ACooper81/scoop-apps, 0
bucket\RaiDrive.json, kkzzhizhou/scoop-zapps, 1
bucket\Raleway.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Rare-Portable.json, ACooper81/scoop-apps, 1
bucket\Recursive-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Recursive-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Recursive-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Recuva-Portable.json, ACooper81/scoop-apps, 0
bucket\Reg2Nsis.json, kkzzhizhou/scoop-zapps, 1
bucket\RegConvert.json, kkzzhizhou/scoop-zapps, 0
bucket\RegConverter.json, ViCrack/scoop-bucket, 0
bucket\RegCool-Portable.json, ACooper81/scoop-apps, 0
bucket\RegexMatchTracer.json, ygguorun/scoop-bucket, 0
bucket\RegistryWorkshop.json, zhoujin7/tomato, 0
bucket\Regshot-Portable.json, ACooper81/scoop-apps, 0
bucket\RemNote-Portable.json, ACooper81/scoop-apps, 0
bucket\Remix-desktop.json, Weidows-projects/scoop-3rd, 1
bucket\RemoteApp-Tool.json, Paxxs/Cluttered-bucket, 1
bucket\RemoteAppTool-Portable.json, ACooper81/scoop-apps, 1
bucket\RemoteAppTool.json, kkzzhizhou/scoop-zapps, 1
bucket\RepaclsCLI-Portable.json, ACooper81/scoop-apps, 0
bucket\ResilioSync.json, kkzzhizhou/scoop-zapps, 0
bucket\Resizer-Portable.json, ACooper81/scoop-apps, 0
bucket\Reso.json, ygguorun/scoop-bucket, 0
bucket\RevoUninstaller-Portable.json, ACooper81/scoop-apps, 0
bucket\RidNacs-Portable.json, ACooper81/scoop-apps, 0
bucket\RightMenuMgr.json, kkzzhizhou/scoop-zapps, 1
bucket\RipMe-Portable.json, ACooper81/scoop-apps, 1
bucket\RmEDirCLI-Portable.json, ACooper81/scoop-apps, 0
bucket\Roadkil-DiskImage.json, kkzzhizhou/scoop-zapps, 0
bucket\RoboIntern-Portable.json, ACooper81/scoop-apps, 0
bucket\RobotoMono-NF-Mono.json, matthewjberger/scoop-nerd-fonts, 1
bucket\RobotoMono-NF-Propo.json, matthewjberger/scoop-nerd-fonts, 1
bucket\RobotoMono-NF.json, matthewjberger/scoop-nerd-fonts, 1
bucket\Rounded-L-Mplus.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Rounded-Mplus.json, matthewjberger/scoop-nerd-fonts, 0
bucket\Rounded-X-Mplus.json, matthewjberger/scoop-nerd-fonts, 0
bucket\RoundedTB-Portable.json, ACooper81/scoop-apps, 1
bucket\RoyalTS-Portable.json, ACooper81/scoop-apps, 0
bucket\RuckZuck-Portable.json, ACooper81/scoop-apps, 1
bucket\Rufus-Portable.json, ACooper81/scoop-apps, 1
bucket\RunAsTICLI-Portable.json, ACooper81/scoop-apps, 1
bucket\RunCat-Portable.json, ACooper81/scoop-apps, 1
bucket\RunCat-zhiyin.json, Weidows-projects/scoop-3rd, 1
bucket\RundeckCLI-Portable.json, ACooper81/scoop-apps, 1
bucket\RustDesk-Portable.json, ACooper81/scoop-apps, 1
bucket\Rymdport-Portable.json, ACooper81/scoop-apps, 1