forked from pkgforge/pkgcache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFLATPAK_APP_IDS.txt
2824 lines (2824 loc) · 68.2 KB
/
FLATPAK_APP_IDS.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
app.authpass.AuthPass
app.bbsync.BlackboardSync
app.bluebubbles.BlueBubbles
app.cantara.Cantara
app.devsuite.Manuals
app.devsuite.Ptyxis
app.devsuite.Schemes
app.drey.Biblioteca
app.drey.Blurble
app.drey.Damask
app.drey.Dialect
app.drey.EarTag
app.drey.Elastic
app.drey.KeyRack
app.drey.MultiplicationPuzzle
app.drey.Warp
app.feeddeck.feeddeck
app.fotema.Fotema
app.getclipboard.Clipboard
app.getspace.Space
app.gummi.gummi
app.lith.Lith
app.midterm.MidtermDesktop
app.moosync.moosync
app.nestful.Nestful
app.organicmaps.desktop
app.pianocheetah.pianocheetah
app.polychromatic.controller
app.rednotebook.RedNotebook
app.riftshare.RiftShare
app.vup.Vup
app.vup.VupChat
app.xemu.xemu
app.ytmdesktop.ytmdesktop
app.ywallet.Ywallet
ar.com.pilas_engine.App
ar.com.softwareperonista.Rockarrolla
ar.com.tuxguitar.TuxGuitar
ar.xjuan.Cambalache
art.taunoerik.tauno-monitor
art.taunoerik.tauno-serial-plotter
at.priv.toastfreeware.ConfClerk
at.ssh_mitm.server
at.vintagestory.VintageStory
au.edu.uq.esys.escript
br.app.pw3270.terminal
br.com.eduk.school
br.com.gualandi.Xjump
br.eng.silas.qpdftools
br.gov.cti.invesalius
br.gov.fazenda.receita.irpf2022
br.gov.fazenda.receita.irpf2023
br.gov.fazenda.receita.irpf2024
ca._0ldsk00l.Nestopia
ca.desrt.dconf-editor
ca.edestcroix.Recordbox
ca.hamaluik.Timecop
ca.littlesvr.asunder
ca.parallel_launcher.ParallelLauncher
ca.uwaterloo.Raven
ca.victorz.acr.AssaultCubeReloaded
ca.vlacroix.Tally
cafe.avery.Delfin
camp.nook.nookdesktop
cat.xtec.clic.JClic
cc.arduino.IDE2
cc.arduino.arduinoide
cc.craftos_pc.CraftOS-PC
cc.craftos_pc.CraftOS-PC-Accelerated
cc.nift.nsm
cc.retroshare.retroshare-gui
cern.root.ROOT
ch.bailu.gtk_meteo
ch.imatt.ClipQR
ch.openboard.OpenBoard
ch.protonmail.protonmail-bridge
ch.protonmail.protonmail-import-export-app
ch.theologeek.Manuskript
ch.threema.threema-web-desktop
ch.tigerjython.TigerJython2
ch.tlaun.TL
ch.x29a.playitslowly
chat.delta.desktop
chat.iamb.iamb
chat.quadrix.Quadrix
chat.revolt.RevoltDesktop
chat.rocket.RocketChat
chat.schildi.desktop
chat.simplex.simplex
chat.tandem.Client
cn.apipost.apipost
cn.feishu.Feishu
cn.lceda.LCEDAPro
cn.navclub.ldbfx
cn.ottercorp.xivlaunchercn
cn.xfangfang.wiliwili
co.headsetapp.headset
co.logonoff.awakeonlan
co.luoja.Telyn
codes.loers.Karlender
codes.loers.Punchclock
codes.merritt.FeelingFinder
codes.merritt.Nyrna
codes.merritt.adventurelist
codes.merritt.bargain
codes.nora.gDiceRoller
com.abagames.noiz2sa
com.abagames.rRootage
com.abisource.AbiWord
com.adamcake.Bolt
com.adilhanney.ricochlime
com.adilhanney.saber
com.adilhanney.super_nonogram
com.adilhanney.timing
com.adobe.Flash-Player-Projector
com.adobe.Reader
com.adrienplazas.Metronome
com.agatanawrot.karambola
com.agateau.PixelWheels
com.agateau.nanonote
com.airtame.Client
com.albiononline.AlbionOnline
com.alientrap.nexuiz-classic
com.alovoa.alovoa-electron
com.alpineclient.AlpineClient
com.amazon.Workspaces
com.ampl.ide
com.anydesk.Anydesk
com.arviceblot.eso-addon-manager
com.atlauncher.ATLauncher
com.axosoft.GitKraken
com.baidu.NetDisk
com.bambulab.BambuStudio
com.basemark.BasemarkGPU
com.beavernotes.beavernotes
com.behringer.XAirEdit
com.belmoussaoui.Authenticator
com.belmoussaoui.Decoder
com.belmoussaoui.Obfuscate
com.belmoussaoui.ReadItLater
com.belmoussaoui.ashpd.demo
com.belmoussaoui.snowglobe
com.bespokesynth.BespokeSynth
com.bestaticpy.bestatic
com.biglybt.BiglyBT
com.bitwarden.desktop
com.bitwig.BitwigStudio
com.bixense.PasswordCalculator
com.bjareholt.johan.SimpleDiary
com.bktus.gpgfrontend
com.bladecoder.adventure-editor
com.blitterstudio.amiberry
com.blockstream.Green
com.blunix.currency_converter
com.borgbase.Vorta
com.boxy_svg.BoxySVG
com.brave.Browser
com.brosix.Brosix
com.budgetwithbuckets.Buckets
com.calibre_ebook.calibre
com.carpeludum.KegaFusion
com.cassidyjames.butler
com.cassidyjames.plausible
com.cburch.Logisim
com.cerebralnomad.recipescribe
com.chatterino.chatterino
com.chez.GrafX2
com.chowdsp.BYOD
com.chroniclogic.Zatikon
com.cinecred.cinecred
com.claudiocambra.brickbuster
com.cloudchewie.cloudotp
com.codemouse92.timecard
com.coeck_studios.Dinonuggys-Journey
com.core447.StreamController
com.corsixth.corsixth
com.cuperino.qprompt
com.daidouji.oneko
com.darhon.syncbackup
com.dec05eba.gpu_screen_recorder
com.dhsdevelopments.Climaxima
com.diffingo.fwbackups
com.discordapp.Discord
com.diy_fever.DIYLayoutCreator
com.djoffe.gnukem
com.donhopkins.Micropolis
com.dosbox_x.DOSBox-X
com.doycho.euterpe.gtk
com.dreamsourcelab.DSView
com.dropbox.Client
com.dz4k.FruitCredits
com.eduke32.EDuke32
com.ekonomikas.merkato
com.elsevier.MendeleyDesktop
com.eminfedar.vaktisalah
com.empesol.timetracker
com.emqx.MQTTX
com.endlessm.photos
com.endlessnetwork.MidnightmareTeddy
com.endlessnetwork.aqueducts
com.endlessnetwork.dragonsapprentice
com.endlessnetwork.fablemaker
com.endlessnetwork.frogsquash
com.endlessnetwork.missilemath
com.endlessnetwork.passage
com.endlessnetwork.tankwarriors
com.endlessnetwork.whitehouse
com.enjoyingfoss.Parlera
com.enjoyingfoss.feeel
com.epicgames.ut2004
com.epicgames.ut99
com.esrille.furiganapad
com.etlegacy.ETLegacy
com.exok.Celeste64
com.expidusos.calculator
com.expidusos.file_manager
com.fafarunner.FaFaRunner
com.feaneron.Boatswain
com.felipekinoshita.Kana
com.felipekinoshita.Wildcard
com.fightcade.Fightcade
com.flashforge.FlashPrint
com.frac_tion.teleport
com.francescogaglione.chronos
com.francescogaglione.cosmicmoney
com.freerdp.FreeRDP
com.frogatto.Frogatto
com.gamestarmechanic.gamestarmechanic
com.geekbench.Geekbench6
com.geeks3d.furmark
com.georgefb.mangareader
com.georgefb.quickaccess
com.getmailspring.Mailspring
com.getpostman.Postman
com.ghostery.browser
com.giadamusic.Giada
com.gigitux.youp
com.gitbutler.gitbutler
com.gitfiend.GitFiend
com.github.ADBeveridge.Raider
com.github.Alcaro.Flips
com.github.AlizaMedicalImaging.AlizaMS
com.github.AmatCoder.mednaffe
com.github.Anuken.Mindustry
com.github.Bleuzen.FFaudioConverter
com.github.Darazaki.Spedread
com.github.Flacon
com.github.HypatiaProject.hypatia
com.github.IsmaelMartinez.teams_for_linux
com.github.JannikHv.Gydl
com.github.Johnn3y.Forklift
com.github.KRTirtho.Spotube
com.github.LongSoft.UEFITool
com.github.Matoking.protontricks
com.github.Murmele.Gittyup
com.github.Murmele.scram
com.github.PintaProject.Pinta
com.github.PopoutApps.popout3d
com.github.Qv2ray
com.github.Rosalie241.RMG
com.github.Xenoveritas.abuse
com.github._0negal.Viper
com.github._4lex4.ScanTailor-Advanced
com.github.afrantzis.Bless
com.github.aharotias2.parapara
com.github.ahrm.sioyek
com.github.alainm23.byte
com.github.alecaddd.sequeler
com.github.alexhuntley.Plots
com.github.amikha1lov.RecApp
com.github.appadeia.Taigo
com.github.arminstraub.krop
com.github.arshubham.cipher
com.github.arshubham.gitignore
com.github.artemanufrij.graphui
com.github.artemanufrij.playmymusic
com.github.artemanufrij.playmyvideos
com.github.artemanufrij.regextester
com.github.avojak.paint-spill
com.github.avojak.warble
com.github.babluboy.bookworm
com.github.bcedu.valasimplehttpserver
com.github.benpocalypse.Huely
com.github.birros.WebArchives
com.github.bjaraujo.Bombermaaan
com.github.bluesabre.darkbar
com.github.buddhi1980.mandelbulber2
com.github.bvschaik.julius
com.github.calo001.fondo
com.github.calo001.luna
com.github.carlos157oliveira.Calculus
com.github.cassidyjames.clairvoyant
com.github.cassidyjames.dippi
com.github.childishgiant.mixer
com.github.chipmuenk.pyfda
com.github.christianrauch.Jahresarbeit-2003
com.github.corna.Vivado
com.github.coslyk.MoonPlayer
com.github.cubitect.cubiomes-viewer
com.github.d4nj1.tlpui
com.github.dahenson.agenda
com.github.dail8859.NotepadNext
com.github.dariasteam.cowsrevenge
com.github.debauchee.barrier
com.github.devalien.workspaces
com.github.dimkr.gplaces
com.github.donadigo.appeditor
com.github.dynobo.normcap
com.github.edenalencar.identifications
com.github.elth0r0.iqpuzzle
com.github.emmanueltouzery.cigale
com.github.emmanueltouzery.hotwire
com.github.emmanueltouzery.projectpad
com.github.fabiocolacio.marker
com.github.finefindus.eyedropper
com.github.flxzt.rnote
com.github.fontmatrix.Fontmatrix
com.github.fries1234.ncsa-mosaic
com.github.gabutakut.gabutdm
com.github.geigi.cozy
com.github.giacomogroppi.writernote-qt
com.github.gijsgoudzwaard.image-optimizer
com.github.git_cola.git-cola
com.github.gmg137.netease-cloud-music-gtk
com.github.gpuvis.Gpuvis
com.github.gyunaev.spivak
com.github.hluk.copyq
com.github.hopsan.Hopsan
com.github.horaciodrs.tradesim
com.github.hugolabe.Wike
com.github.huluti.Coulr
com.github.huluti.Curtail
com.github.ilai_deutel.kibi
com.github.inercia.k3x
com.github.iortcw.iortcw
com.github.iwalton3.jellyfin-media-player
com.github.iwalton3.jellyfin-mpv-shim
com.github.jeromerobert.pdfarranger
com.github.jkotra.eovpn
com.github.jkotra.unlockr
com.github.jmlich.geotagging
com.github.jms55.Sandbox
com.github.johnfactotum.Foliate
com.github.johnfactotum.QuickLookup
com.github.joseexposito.touche
com.github.jpakkane.glyphtracer
com.github.junrrein.PDFSlicer
com.github.juzzlin.DustRacing2D
com.github.k4zmu2a.spacecadetpinball
com.github.kagami.boram
com.github.kalibari.audok
com.github.keriew.augustus
com.github.kmwallio.thiefmd
com.github.lachhebo.Gabtag
com.github.libresprite.LibreSprite
com.github.louis77.tuner
com.github.lxgr_linux.pokete
com.github.makhber.Makhber
com.github.maoschanz.DynamicWallpaperEditor
com.github.maoschanz.drawing
com.github.marhkb.Pods
com.github.marinm.songrec
com.github.marktext.marktext
com.github.matfantinel.moneta
com.github.matfantinel.reminduck
com.github.mdh34.hackup
com.github.mdh34.quickdocs
com.github.mgropp.PdfJumbler
com.github.miguelmota.Cointop
com.github.mikacousin.olc
com.github.mtkennerly.ludusavi
com.github.muriloventuroso.easyssh
com.github.muriloventuroso.givemelyrics
com.github.muriloventuroso.pdftricks
com.github.naaando.lyrics
com.github.needleandthread.vocal
com.github.neithern.g4music
com.github.nihui.waifu2x-ncnn-vulkan
com.github.nrittsti.NTag
com.github.ojubaorg.Othman
com.github.opentyrian.OpenTyrian
com.github.optyfr.JRomManager
com.github.paolostivanin.OTPClient
com.github.petebuffon.yafc
com.github.phase1geo.minder
com.github.philip_scott.notes-up
com.github.philip_scott.spice-up
com.github.polymeilex.neothesia
com.github.powertab.powertabeditor
com.github.qarmin.czkawka
com.github.qarmin.szyszka
com.github.quaternion
com.github.rafostar.Clapper
com.github.raibtoffoletto.litteris
com.github.rajsolai.response
com.github.rajsolai.textsnatcher
com.github.ransome1.sleek
com.github.reds.LogisimEvolution
com.github.reduz.ChibiTracker
com.github.rkoesters.xkcd-gtk
com.github.robertsanseries.ciano
com.github.rogercrocker.badabib
com.github.ryanakca.slingshot
com.github.ryonakano.konbucase
com.github.ryonakano.pinit
com.github.ryonakano.reco
com.github.sakya.corechess
com.github.scrivanolabs.scrivano
com.github.sdv43.whaler
com.github.shonumi.gbe-plus
com.github.sixpounder.GameOfLife
com.github.skullernet.q2pro
com.github.skylot.jadx
com.github.subhadeepjasu.pebbles
com.github.suzie97.communique
com.github.taiko2k.avvie
com.github.taiko2k.tauonmb
com.github.tchx84.Flatseal
com.github.tenderowl.frog
com.github.tenderowl.norka
com.github.tglima.Myfluttercrypto
com.github.theironrobin.siglo
com.github.themix_project.Oomox
com.github.tmewett.BrogueCE
com.github.treagod.spectator
com.github.unrud.RemoteTouchpad
com.github.unrud.VideoDownloader
com.github.unrud.djpdf
com.github.utsushi.Utsushi
com.github.varnholt.dynablaster_revenge
com.github.vikdevelop.photopea_app
com.github.vikdevelop.timer
com.github.vkohaupt.vokoscreenNG
com.github.vladimiry.ElectronMail
com.github.weclaw1.ImageRoll
com.github.wwmm.easyeffects
com.github.wwmm.pulseeffects
com.github.xournalpp.xournalpp
com.github.yucefsourani.albasheer-electronic-quran-browser
com.github.z.Cumulonimbus
com.github.zadam.trilium
com.github.zocker_160.SyncThingy
com.github.ztefn.haguichi
com.gitlab.ColinDuquesnoy.MellowPlayer
com.gitlab.Murmele.UDPLogger
com.gitlab.adnan338.Invoicer
com.gitlab.adnan338.Nixwriter
com.gitlab.azymohliad.Qwertone
com.gitlab.bitseater.meteo
com.gitlab.coringao.JAG
com.gitlab.coringao.cavestory-nx
com.gitlab.cutecom.cutecom
com.gitlab.davem.ClamTk
com.gitlab.guillermop.MasterKey
com.gitlab.j0chn.nextcloud_password_client
com.gitlab.kendellfab.restscope
com.gitlab.librebob.Athenaeum
com.gitlab.maevemi.publictransport
com.gitlab.tipp10.tipp10
com.gluonhq.SceneBuilder
com.google.AndroidStudio
com.google.Chrome
com.google.ChromeDev
com.google.EarthPro
com.gopeed.Gopeed
com.hack_computer.Clubhouse
com.hack_computer.OperatingSystemApp
com.hack_computer.Sidetrack
com.hamrick.VueScan
com.haysell.pos
com.helix_editor.Helix
com.her01n.BatteryInfo
com.heroicgameslauncher.hgl
com.holypangolin.Animatch
com.hoptodesk.HopToDesk
com.hostbuf.FinalShell
com.howlingmoonsoftware.CrayonBall
com.humatarayici.od
com.hunterwittenborn.Celeste
com.icanblink.blink
com.icons8.Lunacy
com.identicalsoftware.anagramarama
com.inform7.IDE
com.inklestudios.Inky
com.inochi2d.inochi-creator
com.inochi2d.inochi-session
com.interversehq.qView
com.inventwithpython.flippy
com.invoiceninja.InvoiceNinja
com.itextpdf.RUPS
com.itopia.client
com.jagex.RuneScape
com.jaquadro.NBTExplorer
com.jeffser.Alpaca
com.jetbrains.CLion
com.jetbrains.DataGrip
com.jetbrains.GoLand
com.jetbrains.IntelliJ-IDEA-Community
com.jetbrains.IntelliJ-IDEA-Ultimate
com.jetbrains.PhpStorm
com.jetbrains.PyCharm-Community
com.jetbrains.PyCharm-Professional
com.jetbrains.Rider
com.jetbrains.RubyMine
com.jetbrains.WebStorm
com.jetpackduba.Gitnuro
com.jgraph.drawio.desktop
com.jianguoyun.Nutstore
com.jpexs.decompiler.flash
com.js8call.JS8Call
com.jwestall.Forecast
com.kalbareader.Kalba
com.katawa_shoujo.KatawaShoujo
com.kavilgroup.gelectrical
com.kavilgroup.gestimator
com.kgurgul.cpuinfo
com.kjxbyz.PicGuard
com.kolor.AutopanoPro
com.konstantintutsch.Caffeine
com.konstantintutsch.Lock
com.krioltech.fnmap
com.kristianduske.TrenchBroom
com.ktechpit.colorwall
com.ktechpit.orion
com.ktechpit.torrhunt
com.ktechpit.ultimate-media-downloader
com.ktechpit.whatsie
com.ktechpit.wonderwall
com.lablicate.OpenChrom
com.leinardi.gst
com.leinardi.gwe
com.leinardi.gx52
com.leohanney.Volaris
com.lettier.movie-monad
com.librumreader.librum
com.lixgame.Lix
com.locomalito.abbayedesmorts
com.logseq.Logseq
com.longbridgeapp.LongbridgePro
com.lunarclient.LunarClient
com.lynnmichaelmartin.TimeTracker
com.makemkv.MakeMKV
com.maplerain.telsis_translator_flutter
com.mardojai.DiccionarioLengua
com.mardojai.ForgeSparks
com.markopejic.downloader
com.mastermindzh.tidal-hifi
com.mattermost.Desktop
com.mattjakeman.ExtensionManager
com.maxint.maxint
com.meetfranz.Franz
com.microsoft.AzureStorageExplorer
com.microsoft.Edge
com.microsoft.EdgeDev
com.mikrotik.WinBox
com.milesalan.mepo
com.moddb.TotalChaos
com.moddb.TotalChaosRetro
com.modrinth.ModrinthApp
com.mojang.Minecraft
com.mongodb.Compass
com.moonlight_stream.Moonlight
com.mousepawmedia.omission
com.mudeprolinux.whakarere
com.musixmatch.Musixmatch
com.napster.napster-bigscreen-electron
com.neatdecisions.Detwinner
com.neoutils.NeoRegex
com.netease.CloudMusic
com.netxms.NetXMSClient
com.netxms.NetXMSClient50
com.netxms.NetXMSClient51
com.nextcloud.desktopclient.nextcloud
com.nickgirga.webready
com.nitrokey.nitrokey-app
com.nitrokey.nitrokey-app2
com.nolimitconnect.NoLimitConnect
com.nomachine.nxplayer
com.nordpass.NordPass
com.notepadqq.Notepadqq
com.notesnook.Notesnook
com.obsproject.Studio
com.okta.developer.CLI
com.one_ware.OneWare
com.openwall.John
com.opera.Opera
com.oppzippy.OpenSCQ30
com.orama_interactive.Pixelorama
com.outerwildsmods.owmods_gui
com.ownrwallet.wallet
com.oyajun.ColorCode
com.ozmartians.VidCutter
com.parallax.PropellerIDE
com.parsecgaming.parsec
com.pikatorrent.PikaTorrent
com.pinegrow.Pinegrow
com.play0ad.zeroad
com.playonlinux.PlayOnLinux4
com.plexamp.Plexamp
com.pojtinger.felicitas.Multiplex
com.pokemmo.PokeMMO
com.polyphone_soundfonts.polyphone
com.pot_app.pot
com.poweriso.PowerISO
com.protonvpn.www
com.prusa3d.PrusaSlicer
com.pypyrev.linuxdcpp
com.q3rally.Q3Rally
com.qq.QQ
com.qq.QQmusic
com.quexten.Goldwarden
com.quixel.Bridge
com.qzandronum.Q-Zandronum
com.rabbit_company.passky
com.rafaelmardojai.Blanket
com.rafaelmardojai.SharePreview
com.rafaelmardojai.WebfontKitGenerator
com.raggesilver.BlackBox
com.ranfdev.Geopard
com.ranfdev.Lobjur
com.ranfdev.Notify
com.rawtherapee.RawTherapee
com.realm667.Wolfenstein_Blade_of_Agony
com.redis.RedisInsight
com.remnantsoftheprecursors.ROTP
com.retrodev.blastem
com.revolutionarygamesstudio.ThriveLauncher
com.richwhitehouse.BigPEmu
com.rocksandpaper.syndic
com.roguetemple.HyperRogue
com.rosegardenmusic.rosegarden
com.rq3.Reaction
com.rtosta.zapzap
com.rustdesk.RustDesk
com.saivert.pwvucontrol
com.sayonara_player.Sayonara
com.scanoss.sbom-workbench
com.scoutshonour.Digital
com.scoutshonour.dtipbijays
com.seafile.Client
com.seal_one.SealOne
com.sejda.Sejda
com.serveftp.officefactoring
com.sevenkfans.sevenkaa
com.seventhstring.Transcribe
com.shatteredpixel.shatteredpixeldungeon
com.sigil_ebook.Sigil
com.sigmyne.crush
com.simplenote.Simplenote
com.simulide.simulide
com.simutrans.Simutrans
com.sindresorhus.Caprine
com.sireliah.Dragit
com.skype.Client
com.slack.Slack
com.sleepfiles.OSCAR
com.slugchess.SlugChess
com.snes9x.Snes9x
com.solvespace.SolveSpace
com.sourcepole.kadas
com.spacestation14.Launcher
com.spotify.Client
com.springrts.SpringLobby
com.st.STM32CubeIDE
com.steamdeckrepo.manager
com.steamgriddb.SGDBoop
com.steamgriddb.steam-rom-manager
com.stepmania.StepMania
com.stremio.Service
com.stremio.Stremio
com.strlen.TreeSheets
com.sublimemerge.App
com.sublimetext.three
com.supermodel3.Supermodel
com.surfshark.Surfshark
com.sweethome3d.Sweethome3d
com.sweetscape.ZeroOneZeroEditor
com.synology.CloudStationBackup
com.synology.SynologyAssistant
com.synology.SynologyDrive
com.synology.synology-note-station
com.syntevo.SmartGit
com.syntevo.SmartSynchronize
com.system76.Popsicle
com.szibele.e-juice-calc
com.tdameritrade.ThinkOrSwim
com.teamspeak.TeamSpeak
com.teamspeak.TeamSpeak3
com.teeworlds.Teeworlds
com.tencent.WeChat
com.tencent.wemeet
com.tercad.fingrom
com.termius.Termius
com.theappgineer.community_remote
com.thebrokenrail.MCPIReborn
com.thewavewarden.Odin2
com.thincast.client
com.tic80.TIC_80
com.ticktick.TickTick
com.todoist.Todoist
com.tominlab.wonderpen
com.tomjwatson.Emote
com.tonikelope.MegaBasterd
com.toolstack.Folio
com.tracktion.Waveform
com.tradingview.tradingview
com.transmissionbt.Transmission
com.tutanota.Tutanota
com.tux4kids.tuxmath
com.tux4kids.tuxtype
com.tuxpusher.TuxPusher
com.tuxpusher.TuxPusherAF
com.ugetdm.uGet
com.ulduzsoft.Birdtray
com.ultimaker.cura
com.umlet.Umlet
com.unicornsonlsd.finamp
com.unity.UnityHub
com.uploadedlobster.peek
com.usebottles.bottles
com.usebruno.Bruno
com.vagueentertainment.Framed
com.valvesoftware.Steam
com.valvesoftware.SteamLink
com.varnamproject.Varnam
com.vba_m.visualboyadvance-m
com.vesc_project.VescTool
com.viber.Viber
com.vicr123.thebeat
com.viewizard.AstroMenace
com.virustotal.VirusTotalUploader
com.visualstudio.code
com.visualstudio.code-oss
com.vivaldi.Vivaldi
com.vixalien.sticky
com.voxdsp.AstroImpact
com.voxdsp.Borg
com.voxdsp.Borg0
com.voxdsp.CubeShooter
com.voxdsp.PacGal
com.voxdsp.PoryDrive
com.voxdsp.SeriousShooter
com.voxdsp.Snowboarder
com.voxdsp.Snowling
com.voxdsp.Spaceminer
com.voxdsp.TempleDriver
com.voxdsp.TheCatrooms
com.voxdsp.TuxFishing
com.voxdsp.TuxScape
com.voxdsp.TuxScape2
com.voxdsp.TuxVsDragon
com.voxdsp.Tuxocide
com.voxdsp.VoxelPaint
com.voxdsp.VoxelPaintPro
com.voxdsp.aigeneratedgame
com.vscodium.codium
com.vscodium.codium-insiders
com.vysp3r.ProtonPlus
com.vzhd1701.gridplayer
com.w1hkj.fldigi
com.w1hkj.flrig
com.warlordsoftwares.formatlab
com.warlordsoftwares.jpeg2pdf
com.warlordsoftwares.media-downloader
com.warlordsoftwares.tube2go
com.warlordsoftwares.youtube-downloader-4ktube
com.wickeditor.WickEditor
com.wings3d.WINGS
com.wire.WireDesktop
com.wireframesketcher.WireframeSketcher
com.wiz.Note
com.wonderlandengine.editor
com.wps.Office
com.writerduet.writersolo
com.xnview.XnConvert
com.xnview.XnRetro
com.xnview.XnSketch
com.xnview.XnViewMP
com.xunlei.Thunder
com.yacreader.YACReader
com.yktoo.ymuse
com.ylsoftware.qmmp.Qmmp
com.yubico.yubioath
com.zandronum.Zandronum
com.zerobrane.studio
com.zettlr.Zettlr
com.zhqli.wikit
com.zoho.Notebook
com.zquestclassic.ZQuest
community.pathofbuilding.PathOfBuilding
cool.ldr.lfy
cz.cvut.edu.comparch.qtrvsim
cz.krupkat.Xpano
cz.ondrejkolin.Barcoder
cz.zeropage.Formiko
de._0x539.gobby
de.akaflieg_freiburg.cavok.add_hours_and_minutes
de.akaflieg_freiburg.enroute
de.bforartists.Bforartists
de.billardgl.Billardgl
de.blobbyvolley.BlobbyVolley2
de.breitbandmessung.Breitbandmessung
de.bund.ausweisapp.ausweisapp2
de.create3000.titania
de.fabrik19.mos-Launcher
de.finnik.PassVault
de.flinkebits.AvaEmailArchivar
de.flose.Kochbuch
de.gunibert.Hackgregator
de.haeckerfelix.AudioSharing
de.haeckerfelix.Fragments
de.haeckerfelix.Shortwave
de.halaszovich.PMbrowser
de.hohnstaedt.xca
de.hummdudel.Libellus
de.k_bo.Televido
de.klayout.KLayout
de.leopoldluley.Clapgrep
de.lernsoftware_filius.Filius
de.linuxguides.RechnungsAssistent
de.manuel_kehl.go-for-it
de.marlam.gencolormap
de.marlam.qv
de.mediathekview.MediathekView
de.nagstamon.nagstamon
de.nicokimmel.shadowcast-electron
de.peterge.combined
de.philippun1.Snoop
de.philippun1.turtle
de.renew.Renew
de.rwth_aachen.ient.RDPlot
de.rwth_aachen.ient.YUView
de.schmidhuberj.DieBahn
de.schmidhuberj.Flare
de.schmidhuberj.tubefeeder
de.sesu8642.feudaltactics
de.swsnr.turnon
de.syping.gta5view
de.tumexam.cli
de.uni_heidelberg.zah.GaiaSky
de.unifreiburg.ellipticcurve
de.wagnermartin.Plattenalbum
de.wger.flutter
de.willuhn.Jameica
de.wwwtech.ColorMate
de.z_ray.Facetracker
de.z_ray.OptimusUI
de.zwarf.picplanner
dev.Cogitri.Health
dev.alextren.Spot
dev.ares.ares
dev.atoft.Reactions
dev.aunetx.deezer
dev.bambosh.UnofficialHomestuckCollection
dev.boxi.Boxi
dev.bragefuglseth.Fretboard
dev.bragefuglseth.Keypunch
dev.bsnes.bsnes
dev.deedles.Trayscale
dev.edfloreshz.Calculator
dev.edfloreshz.CosmicTweaks
dev.edfloreshz.Tasks
dev.ensoft.ecode
dev.fredol.open-tv
dev.gbstudio.gb-studio
dev.geopjr.Archives
dev.geopjr.Calligraphy
dev.geopjr.Collision
dev.geopjr.Tuba
dev.goats.xivlauncher
dev.hdos.HDOS
dev.jamiethalacker.window_painter
dev.k8slens.OpenLens
dev.krtirtho.Flemozi
dev.lapce.lapce
dev.lasheen.qr
dev.levz.TinyImageFinder
dev.linwood.butterfly
dev.lizardbyte.app.Sunshine
dev.lukebriggs.pepys
dev.mariinkys.Oboete
dev.mariinkys.StarryDex
dev.mrquantumoff.mcmodpackmanager
dev.mufeed.Wordbook
dev.neovide.neovide
dev.omerkurt.Tureng
dev.opengoal.OpenGOAL
dev.overlayed.Overlayed
dev.paullee.scraterpreter.Scrape
dev.paullee.scraterpreter.Scrapec
dev.pulsar_edit.Pulsar
dev.qwery.AddWater
dev.restfox.Restfox
dev.rzia.minesector
dev.salaniLeo.forecast
dev.schlaubi.Tonbrett
dev.serebit.Waycheck
dev.skynomads.Seabird
dev.slimevr.SlimeVR
dev.stewlab.PortaWar
dev.storyapps.starc
dev.tchx84.Gameeky
dev.tchx84.Portfolio
dev.ters.Chordcat
dev.toastbits.spmp
dev.vencord.Vesktop
dev.vieb.Vieb
dev.zed.Zed
dev.zelikos.rollit
dk.tangramgames.mrrescue
dog.unix.cantata.Cantata
edu.berkeley.BOINC
edu.mit.Scratch
edu.princeton.physics.WSJTX
edu.stanford.Almond
edu.stanford.protege
ee.ria.qdigidoc4
engineer.atlas.Nyxt
es.danirod.Cartero
es.estoes.wallpaperDownloader
eu.ad5001.LogarithmPlotter
eu.betterbird.Betterbird
eu.cichy1173.tabela
eu.fortysixandtwo.chessclock
eu.ithz.umftpd
eu.ngdevelopment.tsukitag
eu.nimmerfort.blackbody
eu.nokun.MirrorHall
eu.ototu.Quteqoin
eu.planete_kraus.Tarot
eu.quelltext.open_chakra_toning
eu.scarpetta.PDFMixTool
eu.skribisto.skribisto
eu.stethewwolf.gresistor
eu.usdx.UltraStarDeluxe
eu.vcmi.VCMI
fi.mooc.tmc.tmc-cli-rust
fi.skyjake.Lagrange
finance.reckoner.Reckoner
fm.cancel.Ripcord
fm.helio.Workstation
fm.reaper.Reaper
fr.dwightstudio.JArmEmu
fr.fgrabenstaetter.DigitalAssets
fr.free.Homebank
fr.free.brouits.qspeakers
fr.free.hxc2001.HxCFloppyEmulator
fr.free.qccrypt.Qccrypt
fr.handbrake.ghb
fr.henri2h.minestrix
fr.inria.corese.CoreseCommand
fr.inria.corese.CoreseGui
fr.masson_informatique.WhosWho
fr.natron.Natron
fr.nytuo.cosmiccomics
fr.romainvigier.MetadataCleaner
fr.rubet.rpn
fr.sgued.ten_forward
fun.vnote.app.VNote
fyi.zoey.Boop-GTK
fyi.zoey.TeX-Match
ga.rpmtw.rpmlauncher
games.zetsubou.AnAdventurersGallantry
games.zetsubou.HumanityMustPerish
games.zetsubou.MaxMassacre
games.zetsubou.SablesGrimoireDemo
games.zetsubou.WanderNoMore
garden.jamie.Morphosis
garden.turtle.Jellybean
gg.guilded.Guilded
gg.minion.Minion
gg.tesseract.Tesseract
global.worldcoin.worldcoin-core
hu.irl.cameractrls
hu.irl.sysex-controls
id.sideka.App
il.co.ravkavonline.RavKavOnline
im.bernard.Funkcio
im.bernard.Memorado
im.bernard.Nostalgia
im.dino.Dino
im.fluffychat.Fluffychat
im.gitter.Gitter
im.kaidan.kaidan
im.nheko.Nheko
im.pidgin.Pidgin
im.riot.Riot
im.srain.Srain
in.bharatkalluri.shortcircuit
in.bharatkalluri.splash
in.cinny.Cinny
in.co.nandakumar.vara
in.p1x.TanksOfFreedom
in.srev.guiscrcpy
info.beyondallreason.bar
info.bibletime.BibleTime
info.cemu.Cemu
info.colobot.Colobot
info.febvre.Komikku
info.mumble.Mumble