-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.json
More file actions
13529 lines (13529 loc) · 372 KB
/
index.json
File metadata and controls
13529 lines (13529 loc) · 372 KB
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
[
{
"slug": "1clipboard",
"name": "1Clipboard",
"description": "A universal clipboard managing app that makes it easy to access your clipboard from anywhere on any device",
"website": "http://1clipboard.io",
"repository": "https://github.com/wiziple/1clipboard",
"keywords": [
"clipboard"
],
"category": "Utilities",
"icon": "1clipboard-icon.png",
"icon32": "1clipboard-icon-32.png",
"icon64": "1clipboard-icon-64.png",
"icon128": "1clipboard-icon-128.png",
"icon256": "1clipboard-icon-256.png",
"date": "2016-03-31"
},
{
"slug": "1password",
"name": "1Password",
"description": "The easiest way to store and use strong passwords. Log in to sites and fill forms securely with a single click.",
"website": "https://www.1password.com",
"keywords": [
"Password manager",
"Security",
"Privacy"
],
"category": "Utilities",
"icon": "1password-icon.png",
"icon32": "1password-icon-32.png",
"icon64": "1password-icon-64.png",
"icon128": "1password-icon-128.png",
"icon256": "1password-icon-256.png",
"date": "2022-08-15"
},
{
"slug": "5eclient",
"name": "5EClient",
"description": "5EPlay CSGO Client",
"website": "https://www.5eplay.com/",
"keywords": [
"CSGO",
"PUG"
],
"locales": [
"zh_CN"
],
"category": "Games",
"icon": "5eclient-icon.png",
"icon32": "5eclient-icon-32.png",
"icon64": "5eclient-icon-64.png",
"icon128": "5eclient-icon-128.png",
"icon256": "5eclient-icon-256.png",
"date": "2016-08-25"
},
{
"slug": "abstract",
"name": "Abstract",
"description": "A platform for modern design teams to work together.",
"website": "https://www.goabstract.com",
"category": "Graphics & Design",
"keywords": [
"design",
"version control",
"abstract",
"sketch",
"image",
"editor",
"vector",
"prototyping"
],
"icon": "abstract-icon.png",
"icon32": "abstract-icon-32.png",
"icon64": "abstract-icon-64.png",
"icon128": "abstract-icon-128.png",
"icon256": "abstract-icon-256.png",
"date": "2018-06-18"
},
{
"slug": "advanced-rest-client",
"name": "Advanced REST Client",
"description": "REST client application for developers",
"website": "https://install.advancedrestclient.com",
"category": "Developer Tools",
"repository": "https://github.com/advanced-rest-client/arc-electron",
"keywords": [
"REST",
"REST client",
"HTTP",
"request",
"developer"
],
"license": "Apache-2.0",
"icon": "advanced-rest-client-icon.png",
"icon32": "advanced-rest-client-icon-32.png",
"icon64": "advanced-rest-client-icon-64.png",
"icon128": "advanced-rest-client-icon-128.png",
"icon256": "advanced-rest-client-icon-256.png",
"date": "2018-10-01"
},
{
"slug": "aeon",
"name": "Aeon",
"description": "📡 Scan the internet for your personal information and modify or remove it.",
"website": "https://aeon.technology",
"category": "Productivity",
"repository": "https://github.com/leinelissen/aeon",
"keywords": [
"data",
"gdpr",
"personal data",
"data request",
"facebook",
"instagram",
"spotify",
"linkedin"
],
"license": "EUPL-1.2",
"icon": "aeon-icon.png",
"icon32": "aeon-icon-32.png",
"icon64": "aeon-icon-64.png",
"icon128": "aeon-icon-128.png",
"icon256": "aeon-icon-256.png",
"date": "2022-03-18"
},
{
"slug": "aether",
"name": "Aether",
"description": "Open source, self-governing communities with auditable moderation and mod elections.",
"website": "https://getaether.net",
"category": "Social",
"repository": "https://github.com/aethereans/aether-app",
"keywords": [
"collaboration",
"communication",
"communities",
"community",
"ephemeral",
"forum",
"peer-to-peer",
"privacy"
],
"license": "AGPLv3",
"icon": "aether-icon.png",
"icon32": "aether-icon-32.png",
"icon64": "aether-icon-64.png",
"icon128": "aether-icon-128.png",
"icon256": "aether-icon-256.png",
"date": "2021-07-20"
},
{
"slug": "agora-flat",
"name": "Agora Flat",
"description": "Project flat is the Web, Windows and macOS client of Agora Flat open source classroom.",
"website": "https://flat.whiteboard.agora.io/",
"category": "Education",
"repository": "https://github.com/netless-io/flat",
"keywords": [
"classroom",
"online-classroom",
"whiteboard",
"rtc",
"rtm",
"virtual-classroom",
"e-class",
"agora",
"e-learning"
],
"locales": [
"en-US",
"zh-CN"
],
"license": "MIT",
"icon": "agora-flat-icon.png",
"icon32": "agora-flat-icon-32.png",
"icon64": "agora-flat-icon-64.png",
"icon128": "agora-flat-icon-128.png",
"icon256": "agora-flat-icon-256.png",
"date": "2022-08-23"
},
{
"slug": "aipo-com",
"name": "Aipo.com",
"description": "Communication tool to optimize the connection between people",
"website": "https://www.aipo.com/",
"locales": [
"ja"
],
"category": "Business",
"icon": "aipo-com-icon.png",
"icon32": "aipo-com-icon-32.png",
"icon64": "aipo-com-icon-64.png",
"icon128": "aipo-com-icon-128.png",
"icon256": "aipo-com-icon-256.png",
"date": "2016-05-02"
},
{
"slug": "airtame",
"name": "Airtame",
"description": "Hybrid conferencing, screen sharing, & digital signage, all in a single platform.",
"website": "https://www.airtame.com",
"keywords": [
"productivity",
"enterprise",
"wireless hdmi",
"collaboration",
"cross-platform",
"teamwork"
],
"category": "Utilities",
"icon": "airtame-icon.png",
"icon32": "airtame-icon-32.png",
"icon64": "airtame-icon-64.png",
"icon128": "airtame-icon-128.png",
"icon256": "airtame-icon-256.png",
"date": "2016-10-27"
},
{
"slug": "altair",
"name": "Altair GraphQL Client",
"description": "Beautiful feature-rich GraphQL Client for all platforms",
"website": "https://altair.sirmuel.design/",
"category": "Developer Tools",
"repository": "https://github.com/imolorhe/altair",
"keywords": [
"graphql",
"graphql-ide",
"graphql-client",
"opensource"
],
"license": "MIT",
"homebrewCaskName": "altair-graphql-client",
"snapcraftName": "altair",
"youtube_video_url": "https://www.youtube.com/watch?v=zTFYOo4uD-M",
"locales": [
"en-US",
"fr-FR",
"es-ES",
"cs-CZ",
"de-DE",
"pt-BR",
"zh-CN"
],
"icon": "altair-icon.png",
"icon32": "altair-icon-32.png",
"icon64": "altair-icon-64.png",
"icon128": "altair-icon-128.png",
"icon256": "altair-icon-256.png",
"date": "2018-10-28"
},
{
"slug": "amialive",
"name": "Amialive",
"description": "Visual HTTP client and collaboration tool.",
"website": "https://amialive.co",
"category": "Developer Tools",
"keywords": [
"developer",
"developer tools",
"REST client",
"HTTP",
"API",
"API client",
"API build",
"API test",
"testing"
],
"icon": "amialive-icon.png",
"icon32": "amialive-icon-32.png",
"icon64": "amialive-icon-64.png",
"icon128": "amialive-icon-128.png",
"icon256": "amialive-icon-256.png",
"date": "2020-08-18"
},
{
"slug": "anotherredisdesktopmanager",
"name": "AnotherRedisDesktopManager",
"description": "Faster, better and more stable redis desktop manager, compatible with Linux, windows, mac.",
"category": "Developer Tools",
"repository": "https://github.com/qishibo/AnotherRedisDesktopManager",
"keywords": [
"redis-desktop-manager",
"redis-client",
"redis-desktop",
"redis-gui"
],
"license": "MIT",
"icon": "anotherredisdesktopmanager-icon.png",
"icon32": "anotherredisdesktopmanager-icon-32.png",
"icon64": "anotherredisdesktopmanager-icon-64.png",
"icon128": "anotherredisdesktopmanager-icon-128.png",
"icon256": "anotherredisdesktopmanager-icon-256.png",
"date": "2019-05-15"
},
{
"slug": "antares",
"name": "Antares",
"description": "Free and open source SQL client made to be simple and complete.",
"website": "https://antares-sql.app",
"category": "Developer Tools",
"repository": "https://github.com/antares-sql/antares",
"keywords": [
"sql client",
"databases",
"sql",
"mysql",
"mariadb",
"linux",
"windows",
"mac"
],
"license": "MIT",
"icon": "antares-icon.png",
"icon32": "antares-icon-32.png",
"icon64": "antares-icon-64.png",
"icon128": "antares-icon-128.png",
"icon256": "antares-icon-256.png",
"date": "2021-01-29"
},
{
"slug": "asana",
"name": "Asana",
"description": "Keep remote and distributed teams, and your entire organization, focused on their goals, projects, and tasks with Asana.",
"website": "https://asana.com/",
"keywords": [
"project management",
"collaboration"
],
"category": "Productivity",
"icon": "asana-icon.png",
"icon32": "asana-icon-32.png",
"icon64": "asana-icon-64.png",
"icon128": "asana-icon-128.png",
"icon256": "asana-icon-256.png",
"date": "2022-08-15"
},
{
"slug": "assessment-disaggregation",
"name": "Assessment Disaggregation",
"description": "Uses pre- and post-test exam files from most exam systems to determine true learning.",
"website": "https://www.assessmentdisaggregation.org/",
"category": "Education",
"repository": "https://github.com/tazzben/Assessment-Disaggregation.git",
"keywords": [
"Disaggregation",
"Value-added learning scores"
],
"license": "MIT",
"icon": "assessment-disaggregation-icon.png",
"icon32": "assessment-disaggregation-icon-32.png",
"icon64": "assessment-disaggregation-icon-64.png",
"icon128": "assessment-disaggregation-icon-128.png",
"icon256": "assessment-disaggregation-icon-256.png",
"date": "2020-07-27"
},
{
"slug": "assetizr",
"name": "Assetizr",
"description": "The all-in-one image resizer.",
"website": "https://assetizr.com",
"category": "Graphics & Design",
"locales": [
"en"
],
"keywords": [
"design",
"image",
"resize",
"resizer",
"compress",
"compression",
"optimize",
"optimization",
"conversion",
"bulk",
"batch"
],
"icon": "assetizr-icon.png",
"icon32": "assetizr-icon-32.png",
"icon64": "assetizr-icon-64.png",
"icon128": "assetizr-icon-128.png",
"icon256": "assetizr-icon-256.png",
"date": "2019-05-23"
},
{
"slug": "astroprint",
"name": "AstroPrint Desktop",
"description": "Manage your 3D Printer offline and via the Cloud.",
"website": "https://www.astroprint.com/products/p/astroprint-desktop",
"keywords": [
"3d printing",
"iot",
"3d design",
"astroprint",
"octoprint",
"wireless 3d printing",
"cad",
"cad software"
],
"category": "Utilities",
"icon": "astroprint-icon.png",
"icon32": "astroprint-icon-32.png",
"icon64": "astroprint-icon-64.png",
"icon128": "astroprint-icon-128.png",
"icon256": "astroprint-icon-256.png",
"date": "2017-05-14"
},
{
"slug": "barklarm",
"name": "Barklarm",
"description": "Display the status of projects as an item in the tray menu bar.",
"website": "https://www.barklarm.com/",
"category": "Developer Tools",
"repository": "https://github.com/kanekotic/barklarm",
"keywords": [
"build",
"observability",
"CI",
"CD"
],
"license": "Apache License 2.0",
"youtube_video_url": "https://www.youtube.com/watch?v=lJhVdrje63w",
"icon": "barklarm-icon.png",
"icon32": "barklarm-icon-32.png",
"icon64": "barklarm-icon-64.png",
"icon128": "barklarm-icon-128.png",
"icon256": "barklarm-icon-256.png",
"date": "2022-08-05"
},
{
"slug": "bdash",
"name": "Bdash",
"description": "Simple business intelligence application.",
"repository": "https://github.com/bdash-app/bdash",
"keywords": [
"SQL",
"visualization"
],
"license": "MIT",
"category": "Developer Tools",
"icon": "bdash-icon.png",
"icon32": "bdash-icon-32.png",
"icon64": "bdash-icon-64.png",
"icon128": "bdash-icon-128.png",
"icon256": "bdash-icon-256.png",
"date": "2017-02-14"
},
{
"slug": "beaker-browser",
"name": "Beaker Browser",
"description": "An experimental P2P browser",
"website": "https://beakerbrowser.com",
"repository": "https://github.com/beakerbrowser/beaker",
"homebrewCaskName": "beaker-browser",
"keywords": [
"browser",
"p2p",
"dat",
"decentralization",
"hosting",
"privacy"
],
"category": "Productivity",
"icon": "beaker-browser-icon.png",
"icon32": "beaker-browser-icon-32.png",
"icon64": "beaker-browser-icon-64.png",
"icon128": "beaker-browser-icon-128.png",
"icon256": "beaker-browser-icon-256.png",
"date": "2016-10-26"
},
{
"slug": "beekeeper-studio",
"name": "Beekeeper Studio",
"description": "Open Source SQL Editor and Database Manager for Linux, Mac, and Windows.",
"website": "https://www.beekeeperstudio.io",
"category": "Developer Tools",
"repository": "https://github.com/beekeeper-studio/beekeeper-studio",
"snapcraftName": "beekeeper-studio",
"keywords": [
"sql",
"mysql",
"postgres",
"sql-server",
"sqlite",
"linux",
"mac",
"windows"
],
"license": "MIT",
"icon": "beekeeper-studio-icon.png",
"icon32": "beekeeper-studio-icon-32.png",
"icon64": "beekeeper-studio-icon-64.png",
"icon128": "beekeeper-studio-icon-128.png",
"icon256": "beekeeper-studio-icon-256.png",
"date": "2020-08-15"
},
{
"slug": "bibisco",
"name": "bibisco",
"description": "Novel writing software that helps you to write your novel, in a simple way. Use bibisco to develop characters, design novel structure, organize chapters and scenes, analyze the novel, set your goals and, of course, writing!.",
"website": "https://bibisco.com/",
"category": "Books",
"repository": "https://github.com/andreafeccomandi/bibisco/",
"keywords": [
"novel writing software",
"character development software"
],
"license": "GNU GPL v3",
"locales": [
"en-US",
"en-GB",
"en-CA",
"cs",
"de",
"es",
"fr",
"it",
"nl",
"pl",
"ru",
"sr",
"tr",
"pt-PT",
"pt-BR"
],
"youtube_video_url": "https://youtu.be/2MyScbsA4oc",
"icon": "bibisco-icon.png",
"icon32": "bibisco-icon-32.png",
"icon64": "bibisco-icon-64.png",
"icon128": "bibisco-icon-128.png",
"icon256": "bibisco-icon-256.png",
"date": "2020-08-22"
},
{
"slug": "biscuit",
"name": "Biscuit",
"description": "Browser where your favorite apps won't get buried in tabs.",
"website": "https://eatbiscuit.com/",
"category": "Productivity",
"keywords": [
"browser",
"mac",
"windows",
"tab",
"web"
],
"icon": "biscuit-icon.png",
"icon32": "biscuit-icon-32.png",
"icon64": "biscuit-icon-64.png",
"icon128": "biscuit-icon-128.png",
"icon256": "biscuit-icon-256.png",
"date": "2019-06-26"
},
{
"slug": "blockbench",
"name": "Blockbench",
"description": "A modern 3D model editor for cube-based models",
"website": "https://blockbench.net/",
"repository": "https://github.com/JannisX11/blockbench",
"keywords": [
"modeling",
"minecraft"
],
"license": "MIT",
"category": "Graphics & Design",
"goodColorOnWhite": "#282c34",
"goodColorOnBlack": "#3e90ff",
"icon": "blockbench-icon.png",
"icon32": "blockbench-icon-32.png",
"icon64": "blockbench-icon-64.png",
"icon128": "blockbench-icon-128.png",
"icon256": "blockbench-icon-256.png",
"date": "2018-04-09"
},
{
"slug": "boost-changer",
"name": "Boost Changer",
"description": " control CPU turbo boost and the settings of the cpu speed on Linux.",
"category": "Utilities",
"repository": "https://github.com/nbebaw/boostchanger",
"keywords": [
"cpu",
"settings",
"turbo",
"boost",
"linux",
"system",
"battery"
],
"license": "MIT",
"icon": "boost-changer-icon.png",
"icon32": "boost-changer-icon-32.png",
"icon64": "boost-changer-icon-64.png",
"icon128": "boost-changer-icon-128.png",
"icon256": "boost-changer-icon-256.png",
"date": "2021-04-02"
},
{
"slug": "bootstrap-studio",
"name": "Bootstrap Studio",
"description": "Powerful desktop app for creating responsive websites using the Bootstrap framework.",
"website": "https://bootstrapstudio.io/",
"category": "Developer Tools",
"keywords": [
"bootstrap",
"css",
"sass",
"js",
"ide",
"editor",
"builder"
],
"icon": "bootstrap-studio-icon.png",
"icon32": "bootstrap-studio-icon-32.png",
"icon64": "bootstrap-studio-icon-64.png",
"icon128": "bootstrap-studio-icon-128.png",
"icon256": "bootstrap-studio-icon-256.png",
"date": "2019-05-23"
},
{
"slug": "boxhero",
"name": "BoxHero",
"description": "No experience needed! BoxHero is the inventory management for everyone.",
"website": "https://www.boxhero-app.com",
"repository": "https://github.com/bgpworks/boxhero-electron",
"category": "Business",
"keywords": [
"inventory",
"inventory management",
"stock control",
"barcode",
"qrcode",
"sku",
"scanner",
"warehouse",
"e-commerce",
"POS"
],
"locales": [
"en",
"ko"
],
"icon": "boxhero-icon.png",
"icon32": "boxhero-icon-32.png",
"icon64": "boxhero-icon-64.png",
"icon128": "boxhero-icon-128.png",
"icon256": "boxhero-icon-256.png",
"date": "2021-08-25"
},
{
"slug": "boxy-svg",
"name": "Boxy SVG",
"description": "Scalable Vector Graphics (SVG) editor. For beginners as well as for professional web designers and web developers. On any device and operating system.",
"category": "Graphics & Design",
"website": "https://boxy-svg.com",
"snapcraftName": "boxy-svg",
"keywords": [
"svg",
"vector",
"editor",
"graphics",
"design",
"images"
],
"icon": "boxy-svg-icon.png",
"icon32": "boxy-svg-icon-32.png",
"icon64": "boxy-svg-icon-64.png",
"icon128": "boxy-svg-icon-128.png",
"icon256": "boxy-svg-icon-256.png",
"date": "2020-09-15"
},
{
"slug": "brim",
"name": "Brim",
"description": "Desktop application to efficiently search large packet captures and Zeek logs.",
"website": "https://www.brimsecurity.com",
"category": "Utilities",
"repository": "https://github.com/brimsec/brim",
"keywords": [
"zeek",
"pcap",
"wireshark",
"logs"
],
"license": "BSD-3-Clause License",
"youtube_video_url": "https://youtu.be/InT-7WZ5Y2Y",
"icon": "brim-icon.png",
"icon32": "brim-icon-32.png",
"icon64": "brim-icon-64.png",
"icon128": "brim-icon-128.png",
"icon256": "brim-icon-256.png",
"date": "2020-08-20"
},
{
"slug": "brisqi",
"name": "Brisqi",
"description": "Offline-first personal Kanban app.",
"website": "https://brisqi.com",
"category": "Productivity",
"keywords": [
"productivity",
"kanban",
"task",
"tasks",
"task manager",
"taskmanagement",
"project",
"projectmanagement",
"planning",
"todo",
"to-do",
"focus",
"free"
],
"icon": "brisqi-icon.png",
"icon32": "brisqi-icon-32.png",
"icon64": "brisqi-icon-64.png",
"icon128": "brisqi-icon-128.png",
"icon256": "brisqi-icon-256.png",
"date": "2021-02-09"
},
{
"slug": "browserosaurus",
"name": "Browserosaurus",
"description": "Browser prompter for macOS.",
"repository": "https://github.com/will-stone/browserosaurus",
"keywords": [
"productivity",
"development",
"utility",
"macos"
],
"category": "Utilities",
"license": "MIT",
"icon": "browserosaurus-icon.png",
"icon32": "browserosaurus-icon-32.png",
"icon64": "browserosaurus-icon-64.png",
"icon128": "browserosaurus-icon-128.png",
"icon256": "browserosaurus-icon-256.png",
"date": "2017-08-28"
},
{
"slug": "buckets",
"name": "Buckets",
"description": "Beautiful, private budgeting.",
"website": "https://www.budgetwithbuckets.com",
"keywords": [
"budgeting",
"finance"
],
"category": "Finance",
"locales": [
"pt",
"en",
"es"
],
"icon": "buckets-icon.png",
"icon32": "buckets-icon-32.png",
"icon64": "buckets-icon-64.png",
"icon128": "buckets-icon-128.png",
"icon256": "buckets-icon-256.png",
"date": "2018-03-08"
},
{
"slug": "buka",
"name": "Buka",
"description": "EBook Management",
"repository": "https://github.com/oguzhaninan/Buka.git",
"keywords": [
"book",
"pdf",
"ebook",
"book library",
"book management",
"ebook reader",
"pdf reader"
],
"license": "MIT",
"category": "Books",
"icon": "buka-icon.png",
"icon32": "buka-icon-32.png",
"icon64": "buka-icon-64.png",
"icon128": "buka-icon-128.png",
"icon256": "buka-icon-256.png",
"date": "2017-03-16"
},
{
"slug": "buttercup",
"name": "Buttercup",
"description": "Easy-to-use Password Manager",
"website": "https://buttercup.pw",
"repository": "https://github.com/buttercup/buttercup-desktop",
"license": "MIT",
"keywords": [
"encrypt",
"encryption",
"password",
"security",
"privacy",
"login"
],
"category": "Productivity",
"icon": "buttercup-icon.png",
"icon32": "buttercup-icon-32.png",
"icon64": "buttercup-icon-64.png",
"icon128": "buttercup-icon-128.png",
"icon256": "buttercup-icon-256.png",
"date": "2017-11-17"
},
{
"slug": "cacher",
"name": "Cacher",
"description": "Cloud-based, team-enabled code snippet manager with Gists sync.",
"website": "https://www.cacher.io/",
"keywords": [
"snippets",
"programming",
"coding",
"gists"
],
"category": "Developer Tools",
"snapcraftName": "cacher",
"icon": "cacher-icon.png",
"icon32": "cacher-icon-32.png",
"icon64": "cacher-icon-64.png",
"icon128": "cacher-icon-128.png",
"icon256": "cacher-icon-256.png",
"date": "2018-10-10"
},
{
"slug": "calmlywriter",
"name": "Calmly Writer",
"description": "The Ultimate Distraction-Free Writing App.",
"website": "https://www.calmlywriter.com",
"keywords": [
"distraction free writing",
"markdown",
"win",
"mac",
"linux",
"editor",
"text editor",
"writing",
"notepad",
"focus mode"
],
"category": "Productivity",
"homebrewCaskName": "calmly-writer",
"icon": "calmlywriter-icon.png",
"icon32": "calmlywriter-icon-32.png",
"icon64": "calmlywriter-icon-64.png",
"icon128": "calmlywriter-icon-128.png",
"icon256": "calmlywriter-icon-256.png",
"date": "2021-05-27"
},
{
"slug": "camunda-modeler",
"name": "Camunda Modeler",
"description": "Developer-friendly app for editing and executing BPMN process diagrams and DMN decisions.",
"website": "https://camunda.com/products/modeler/",
"category": "Developer Tools",
"repository": "https://github.com/camunda/camunda-modeler/",
"keywords": [
"bpmn",
"dmn",
"modeling",
"modeler",
"diagram",
"business process"
],
"license": "MIT",
"icon": "camunda-modeler-icon.png",
"icon32": "camunda-modeler-icon-32.png",
"icon64": "camunda-modeler-icon-64.png",
"icon128": "camunda-modeler-icon-128.png",
"icon256": "camunda-modeler-icon-256.png",
"date": "2020-03-14"
},
{
"slug": "caption-pro",
"name": "Caption Pro",
"description": "Reduce your camera to sale time, edit image metadata with facial recognition.",
"website": "https://caption-pro.com/",
"category": "Photo & Video",
"keywords": [
"image",
"photo",
"photography",
"metadata",
"exiftool",
"exif",
"facial recognition"
],
"icon": "caption-pro-icon.png",
"icon32": "caption-pro-icon-32.png",
"icon64": "caption-pro-icon-64.png",
"icon128": "caption-pro-icon-128.png",
"icon256": "caption-pro-icon-256.png",
"date": "2020-03-14"
},
{
"slug": "cargo-messenger",
"name": "Cargo Messenger",
"description": "App provides messaging system using Cargo.LT system.",
"website": "https://www.cargo.lt/asp/software.asp",
"category": "Business",
"keywords": [
"cargo.lt",
"messenger",
"cargo messenger",
"cargo.pl",
"cargo.es",
"cargo",
"freight",
"transport"
],
"locales": [
"en-US",
"ru",
"lt",
"pl",
"lv",
"es",
"pt",
"ua"
],
"icon": "cargo-messenger-icon.png",
"icon32": "cargo-messenger-icon-32.png",
"icon64": "cargo-messenger-icon-64.png",
"icon128": "cargo-messenger-icon-128.png",
"icon256": "cargo-messenger-icon-256.png",
"date": "2019-01-11"
},
{
"slug": "cashnotify",
"name": "CashNotify",
"description": "Monitor your Stripe accounts from your menu bar.",
"website": "https://cashnotify.com",
"keywords": [
"stripe",
"mac",
"menubar",
"payments",
"alerts",
"notifications"
],
"category": "Utilities",
"icon": "cashnotify-icon.png",
"icon32": "cashnotify-icon-32.png",
"icon64": "cashnotify-icon-64.png",
"icon128": "cashnotify-icon-128.png",
"icon256": "cashnotify-icon-256.png",
"date": "2017-06-13"
},
{
"slug": "catlight",
"name": "CatLight",
"description": "Desktop build status notifications",
"website": "https://catlight.io",
"homebrewCaskName": "catlight",
"keywords": [
"build"
],
"category": "Developer Tools",
"icon": "catlight-icon.png",
"icon32": "catlight-icon-32.png",
"icon64": "catlight-icon-64.png",
"icon128": "catlight-icon-128.png",
"icon256": "catlight-icon-256.png",
"date": "2016-03-16"
},
{
"slug": "cbetar2",
"name": "CBETA Reader 2 (Unofficial)",
"description": "CBETA Reader 2 is a Buddhist text reader app. It gets Buddhist text data from CBETA APIs.",
"repository": "https://github.com/MrMYHuang/cbetar2",
"keywords": [
"CBETA",
"Buddhist",
"Tripitaka"
],
"category": "Books",
"license": "MIT",
"icon": "cbetar2-icon.png",
"icon32": "cbetar2-icon-32.png",
"icon64": "cbetar2-icon-64.png",
"icon128": "cbetar2-icon-128.png",
"icon256": "cbetar2-icon-256.png",
"date": "2022-03-19"
},
{
"slug": "chatwork",
"name": "ChatWork",
"description": "Group chat for global teams",
"website": "http://www.chatwork.com/download/",
"keywords": [
"chatwork",
"chat",
"business",