-
Notifications
You must be signed in to change notification settings - Fork 42
/
patches.json
3084 lines (3084 loc) · 82.1 KB
/
patches.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Alternative thumbnails",
"description": "Adds options to replace video thumbnails using the DeArrow API or image captures from the video.",
"use": true,
"dependencies": [
"BytecodePatch",
"BytecodePatch",
"BytecodePatch",
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Ambient mode control",
"description": "Adds options to disable Ambient mode and to bypass Ambient mode restrictions.",
"use": true,
"dependencies": [
"Settings for YouTube",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Amoled",
"description": "Applies a pure black theme to some components.",
"use": true,
"dependencies": [
"BytecodePatch",
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Bitrate default value",
"description": "Sets the audio quality to \u0027Always High\u0027 when you first install the app.",
"use": true,
"dependencies": [
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Bypass image region restrictions",
"description": "Adds an option to use a different host for static images, so that images blocked in some countries can be received.",
"use": true,
"dependencies": [
"BytecodePatch",
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Bypass image region restrictions",
"description": "Adds an option to use a different host for static images, so that images blocked in some countries can be received.",
"use": true,
"dependencies": [
"Settings for YouTube Music",
"BytecodePatch"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Certificate spoof",
"description": "Enables YouTube Music to work with Android Auto by spoofing the YouTube Music certificate.",
"use": true,
"dependencies": [],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Change package name",
"description": "Changes the package name for Reddit to the name specified in patch options.",
"use": false,
"dependencies": [],
"compatiblePackages": {
"com.reddit.frontpage": null
},
"options": [
{
"key": "packageNameReddit",
"title": "Package name of Reddit",
"description": "The name of the package to rename the app to.",
"required": true,
"type": "kotlin.String",
"default": "com.reddit.frontpage",
"values": {
"Clone": "com.reddit.frontpage.revanced",
"Default": "com.reddit.frontpage.rvx",
"Original": "com.reddit.frontpage"
}
}
]
},
{
"name": "Change player flyout menu toggles",
"description": "Adds an option to use text toggles instead of switch toggles within the additional settings menu.",
"use": true,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Change share sheet",
"description": "Add option to change from in-app share sheet to system share sheet.",
"use": true,
"dependencies": [
"Settings for YouTube",
"BytecodePatch",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Change share sheet",
"description": "Add option to change from in-app share sheet to system share sheet.",
"use": true,
"dependencies": [
"Settings for YouTube Music",
"BytecodePatch",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Change start page",
"description": "Adds an option to set which page the app opens in instead of the homepage.",
"use": true,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Change start page",
"description": "Adds an option to set which page the app opens in instead of the homepage.",
"use": true,
"dependencies": [
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Change version code",
"description": "Changes the version code of the app to the value specified in patch options. Except when mounting, this can prevent app stores from updating the app and allow the app to be installed over an existing installation that has a higher version code. By default, the highest version code is set.",
"use": false,
"dependencies": [],
"compatiblePackages": null,
"options": [
{
"key": "versionCode",
"title": "Version code",
"description": "The version code to use. (1 ~ 2147483647)",
"required": true,
"type": "kotlin.String",
"default": "2147483647",
"values": {
"Lowest": "1",
"Highest": "2147483647"
}
}
]
},
{
"name": "Custom Shorts action buttons",
"description": "Changes, at compile time, the icon of the action buttons of the Shorts player.",
"use": true,
"dependencies": [
"Settings for YouTube",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": [
{
"key": "iconType",
"title": "Shorts icon style ",
"description": "The style of the icons for the action buttons in the Shorts player.",
"required": true,
"type": "kotlin.String",
"default": "cairo",
"values": {
"Cairo": "cairo",
"Outline": "outline",
"OutlineCircle": "outlinecircle",
"Round": "round",
"YoutubeOutline": "youtubeoutline",
"YouTube": "youtube"
}
}
]
},
{
"name": "Custom branding icon for YouTube",
"description": "Changes the YouTube app icon to the icon specified in patch options.",
"use": false,
"dependencies": [
"Settings for YouTube",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": [
{
"key": "appIcon",
"title": "App icon",
"description": "The icon to apply to the app.\n\nIf a path to a folder is provided, the folder must contain the following folders:\n\n- mipmap-xxxhdpi\n- mipmap-xxhdpi\n- mipmap-xhdpi\n- mipmap-hdpi\n- mipmap-mdpi\n\nEach of these folders must contain the following files:\n\n- adaptiveproduct_youtube_background_color_108.png\n- adaptiveproduct_youtube_foreground_color_108.png\n- ic_launcher.png\n- ic_launcher_round.png",
"required": true,
"type": "kotlin.String",
"default": "xisr_holiday",
"values": {
"AFN Blue": "afn_blue",
"AFN Red": "afn_red",
"MMT": "mmt",
"MMT Blue": "mmt_blue",
"MMT Green": "mmt_green",
"MMT Orange": "mmt_orange",
"MMT Pink": "mmt_pink",
"MMT Turquoise": "mmt_turquoise",
"MMT Yellow": "mmt_yellow",
"Revancify Blue": "revancify_blue",
"Revancify Red": "revancify_red",
"Vanced Black": "vanced_black",
"Vanced Light": "vanced_light",
"Xisr Yellow": "xisr_yellow",
"Xisr Holiday": "xisr_holiday",
"YouTube": "youtube",
"YouTube Black": "youtube_black"
}
},
{
"key": "changeSplashIcon",
"title": "Change splash icons",
"description": "Apply the custom branding icon to the splash screen.",
"required": true,
"type": "kotlin.Boolean",
"default": true,
"values": null
},
{
"key": "restoreOldSplashAnimation",
"title": "Restore old splash animation",
"description": "Restore the old style splash animation.",
"required": true,
"type": "kotlin.Boolean",
"default": true,
"values": null
}
]
},
{
"name": "Custom branding icon for YouTube Music",
"description": "Changes the YouTube Music app icon to the icon specified in patch options.",
"use": false,
"dependencies": [
"Settings for YouTube Music",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": [
{
"key": "appIcon",
"title": "App icon",
"description": "The icon to apply to the app.\n\nIf a path to a folder is provided, the folder must contain the following folders:\n\n- mipmap-xxxhdpi\n- mipmap-xxhdpi\n- mipmap-xhdpi\n- mipmap-hdpi\n- mipmap-mdpi\n\nEach of these folders must contain the following files:\n\n- adaptiveproduct_youtube_music_background_color_108.png\n- adaptiveproduct_youtube_music_foreground_color_108.png\n- ic_launcher_release.png",
"required": true,
"type": "kotlin.String",
"default": "xisr_yellow",
"values": {
"AFN Blue": "afn_blue",
"AFN Red": "afn_red",
"MMT": "mmt",
"MMT Blue": "mmt_blue",
"MMT Green": "mmt_green",
"MMT Orange": "mmt_orange",
"MMT Pink": "mmt_pink",
"MMT Turquoise": "mmt_turquoise",
"MMT Yellow": "mmt_yellow",
"Revancify Blue": "revancify_blue",
"Revancify Red": "revancify_red",
"Vanced Black": "vanced_black",
"Vanced Light": "vanced_light",
"Xisr Yellow": "xisr_yellow",
"YouTube Music": "youtube_music"
}
},
{
"key": "changeSplashIcon",
"title": "Change splash icons",
"description": "Apply the custom branding icon to the splash screen.",
"required": true,
"type": "kotlin.Boolean",
"default": true,
"values": null
},
{
"key": "restoreOldSplashIcon",
"title": "Restore old splash icon",
"description": "Restore the old style splash icon.\n\nIf you enable both the old style splash icon and the Cairo splash animation,\n\nOld style splash icon will appear first and then the Cairo splash animation will start.",
"required": true,
"type": "kotlin.Boolean",
"default": false,
"values": null
}
]
},
{
"name": "Custom branding name for Reddit",
"description": "Renames the Reddit app to the name specified in patch options.",
"use": false,
"dependencies": [],
"compatiblePackages": {
"com.reddit.frontpage": null
},
"options": [
{
"key": "appName",
"title": "App name",
"description": "The name of the app.",
"required": true,
"type": "kotlin.String",
"default": "Reddit",
"values": {
"Default": "RVX Reddit",
"Original": "Reddit"
}
}
]
},
{
"name": "Custom branding name for YouTube",
"description": "Renames the YouTube app to the name specified in patch options.",
"use": false,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": [
{
"key": "appName",
"title": "App name",
"description": "The name of the app.",
"required": true,
"type": "kotlin.String",
"default": "RVX",
"values": {
"ReVanced Extended": "ReVanced Extended",
"RVX": "RVX",
"YouTube RVX": "YouTube RVX",
"YouTube": "YouTube"
}
}
]
},
{
"name": "Custom branding name for YouTube Music",
"description": "Renames the YouTube Music app to the name specified in patch options.",
"use": false,
"dependencies": [
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": [
{
"key": "appNameNotification",
"title": "App name in notification panel",
"description": "The name of the app as it appears in the notification panel.",
"required": true,
"type": "kotlin.String",
"default": "RVX Music",
"values": {
"ReVanced Extended Music": "ReVanced Extended Music",
"RVX Music": "RVX Music",
"YouTube Music": "YouTube Music",
"YT Music": "YT Music"
}
},
{
"key": "appNameLauncher",
"title": "App name in launcher",
"description": "The name of the app as it appears in the launcher.",
"required": true,
"type": "kotlin.String",
"default": "RVX Music",
"values": {
"ReVanced Extended Music": "ReVanced Extended Music",
"RVX Music": "RVX Music",
"YouTube Music": "YouTube Music",
"YT Music": "YT Music"
}
}
]
},
{
"name": "Custom double tap length",
"description": "Adds Double-tap to seek values that are specified in patch options.",
"use": true,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": [
{
"key": "doubleTapLengthArrays",
"title": "Double-tap to seek values",
"description": "A list of custom Double-tap to seek lengths to be added, separated by commas.",
"required": true,
"type": "kotlin.String",
"default": "3, 5, 10, 15, 20, 30, 60, 120, 180",
"values": null
}
]
},
{
"name": "Custom header for YouTube",
"description": "Applies a custom header in the top left corner within the app.",
"use": false,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": [
{
"key": "customHeader",
"title": "Custom header",
"description": "The header to apply to the app.\n\nPatch option \u0027Custom branding icon\u0027 applies only when:\n\n1. Patch \u0027Custom branding icon for YouTube\u0027 is included.\n2. Patch option for \u0027Custom branding icon for YouTube\u0027 is selected from the preset.\n\nIf a path to a folder is provided, the folder must contain one or more of the following folders, depending on the DPI of the device:\n\n- drawable-xxxhdpi\n- drawable-xxhdpi\n- drawable-xhdpi\n- drawable-hdpi\n- drawable-mdpi\n\nEach of the folders must contain all of the following files:\n\n[Generic header]\n\n- yt_wordmark_header_light.png\n- yt_wordmark_header_dark.png\n\nThe image dimensions must be as follows:\n\n- drawable-xxxhdpi: 488px x 192px\n- drawable-xxhdpi: 366px x 144px\n- drawable-xhdpi: 244px x 96px\n- drawable-hdpi: 184px x 72px\n- drawable-mdpi: 122px x 48px\n\n[Premium header]\n\n- yt_premium_wordmark_header_light.png\n- yt_premium_wordmark_header_dark.png\n\nThe image dimensions must be as follows:\n- drawable-xxxhdpi: 516px x 192px\n- drawable-xxhdpi: 387px x 144px\n- drawable-xhdpi: 258px x 96px\n- drawable-hdpi: 194px x 72px\n- drawable-mdpi: 129px x 48px",
"required": true,
"type": "kotlin.String",
"default": "custom_branding_icon",
"values": {
"Custom branding icon": "custom_branding_icon"
}
}
]
},
{
"name": "Custom header for YouTube Music",
"description": "Applies a custom header in the top left corner within the app.",
"use": false,
"dependencies": [
"BytecodePatch",
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": [
{
"key": "customHeader",
"title": "Custom header",
"description": "The header to apply to the app.\n\nPatch option \u0027Custom branding icon\u0027 applies only when:\n\n1. Patch \u0027Custom branding icon for YouTube Music\u0027 is included.\n2. Patch option for \u0027Custom branding icon for YouTube Music\u0027 is selected from the preset.\n\nIf a path to a folder is provided, the folder must contain one or more of the following folders, depending on the DPI of the device:\n\n- drawable-xxxhdpi\n- drawable-xxhdpi\n- drawable-xhdpi\n- drawable-hdpi\n- drawable-mdpi\n\nEach of the folders must contain all of the following files:\n\n- action_bar_logo.png\n- logo_music.png\n- ytm_logo.png\n\nThe image \u0027action_bar_logo.png\u0027 dimensions must be as follows:\n\n- drawable-xxxhdpi: 320px x 96px\n- drawable-xxhdpi: 240px x 72px\n- drawable-xhdpi: 160px x 48px\n- drawable-hdpi: 121px x 36px\n- drawable-mdpi: 80px x 24px\n\nThe image \u0027logo_music.png\u0027 dimensions must be as follows:\n\n- drawable-xxxhdpi: 576px x 200px\n- drawable-xxhdpi: 432px x 150px\n- drawable-xhdpi: 288px x 100px\n- drawable-hdpi: 217px x 76px\n- drawable-mdpi: 144px x 50px\n\nThe image \u0027ytm_logo.png\u0027 dimensions must be as follows:\n\n- drawable-xxxhdpi: 412px x 144px\n- drawable-xxhdpi: 309px x 108px\n- drawable-xhdpi: 206px x 72px\n- drawable-hdpi: 155px x 54px\n- drawable-mdpi: 103px x 36px",
"required": true,
"type": "kotlin.String",
"default": "custom_branding_icon",
"values": {
"Custom branding icon": "custom_branding_icon"
}
}
]
},
{
"name": "Description components",
"description": "Adds options to hide and disable description components.",
"use": true,
"dependencies": [
"Settings for YouTube",
"BytecodePatch",
"BytecodePatch",
"BytecodePatch",
"ResourcePatch",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Disable Cairo splash animation",
"description": "Adds an option to disable Cairo splash animation.",
"use": true,
"dependencies": [
"Settings for YouTube Music",
"ResourcePatch",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"7.06.54",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Disable DRC audio",
"description": "Adds an option to disable DRC (Dynamic Range Compression) audio.",
"use": true,
"dependencies": [
"Settings for YouTube Music",
"ResourcePatch"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Disable QUIC protocol",
"description": "Adds an option to disable CronetEngine\u0027s QUIC protocol.",
"use": true,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Disable auto audio tracks",
"description": "Adds an option to disable audio tracks from being automatically enabled.",
"use": true,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Disable auto captions",
"description": "Adds an option to disable captions from being automatically enabled.",
"use": true,
"dependencies": [
"BytecodePatch",
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Disable auto captions",
"description": "Adds an option to disable captions from being automatically enabled.",
"use": true,
"dependencies": [
"BytecodePatch",
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Disable dislike redirection",
"description": "Adds an option to disable redirection to the next track when clicking the Dislike button.",
"use": true,
"dependencies": [
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Disable haptic feedback",
"description": "Adds options to disable haptic feedback when swiping in the video player.",
"use": true,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Disable resuming Shorts on startup",
"description": "Adds an option to disable the Shorts player from resuming on app startup when Shorts were last being watched.",
"use": true,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Disable screenshot popup",
"description": "Adds an option to disable the popup that appears when taking a screenshot.",
"use": true,
"dependencies": [
"Settings for Reddit"
],
"compatiblePackages": {
"com.reddit.frontpage": null
},
"options": []
},
{
"name": "Disable splash animation",
"description": "Adds an option to disable the splash animation on app startup.",
"use": true,
"dependencies": [
"ResourcePatch",
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Enable OPUS codec",
"description": "Adds an options to enable the OPUS audio codec if the player response includes.",
"use": true,
"dependencies": [
"BytecodePatch",
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Enable OPUS codec",
"description": "Adds an options to enable the OPUS audio codec if the player response includes.",
"use": true,
"dependencies": [
"BytecodePatch",
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Enable debug logging",
"description": "Adds an option to enable debug logging.",
"use": true,
"dependencies": [
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Enable debug logging",
"description": "Adds an option to enable debug logging.",
"use": true,
"dependencies": [
"Settings for YouTube Music"
],
"compatiblePackages": {
"com.google.android.apps.youtube.music": [
"6.20.51",
"6.29.59",
"6.42.55",
"6.51.53",
"7.16.53",
"7.25.53"
]
},
"options": []
},
{
"name": "Enable external browser",
"description": "Adds an option to always open links in your browser instead of in the in-app-browser.",
"use": true,
"dependencies": [
"BytecodePatch",
"Settings for YouTube"
],
"compatiblePackages": {
"com.google.android.youtube": [
"18.29.38",
"18.33.40",
"18.38.44",
"18.48.39",
"19.05.36",
"19.16.39",
"19.44.39"
]
},
"options": []
},
{
"name": "Enable gradient loading screen",
"description": "Adds an option to enable the gradient loading screen.",
"use": true,
"dependencies": [