-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-policies.json
1683 lines (1683 loc) · 94 KB
/
test-policies.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
{
"policies": {
"3rdparty": {
"Extensions": {
"uBlock0@raymondhill.net": {
"adminSettings": {
"assetsBootstrapLocation": "https://phoenix.celenity.dev/uBlock/assets.json",
"userSettings": {
"advancedUserEnabled": true,
"autoUpdate": true,
"cnameUncloakEnabled": true,
"dynamicFilteringEnabled": true,
"firewallPaneMinimized": false,
"hyperlinkAuditingDisabled": true,
"prefetchingDisabled": true,
"suspendUntilListsAreLoaded": true
}
},
"advancedSettings": [
[
"autoCommentFilterTemplate",
"{{url}}"
],
[
"autoUpdatePeriod",
"1"
],
[
"filterAuthorMode",
"true"
],
[
"updateAssetBypassBrowserCache",
"true"
]
]
}
}
},
"CaptivePortal": false,
"ContentAnalysis": {
"DefaultResult": 0,
"Enabled": false
},
"DisableEncryptedClientHello": false,
"DisableFirefoxStudies": true,
"DisableFormHistory": true,
"DisablePocket": true,
"DisableSystemAddonUpdate": false,
"DisableTelemetry": true,
"DNSOverHTTPS": {
"Enabled": true,
"Locked": false,
"ProviderURL": "https://dns.quad9.net/dns-query",
"Fallback": false
},
"DontCheckDefaultBrowser": true,
"EncryptedMediaExtensions": {
"Enabled": false,
"Locked": true
},
"Extensions": {
"Install": [
"https://phoenix.celenity.dev/extensions/xpi/default-brave-search-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/duckduckgo-html-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/duckduckgo-lite-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/ecosia-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/kagi-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/kagi-html-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/metager-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/mojeek-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/leta-brave-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/leta-google-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/no-search-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/qwant-latest.xpi",
"https://phoenix.celenity.dev/extensions/xpi/startpage-latest.xpi"
]
},
"ExtensionSettings": {
"uBlock0@raymondhill.net": {
"installation_mode": "normal_installed",
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi",
"default_area": "navbar",
"updates_disabled": false,
"temporarily_allow_weak_signatures": false
},
"{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}": {
"installation_mode": "blocked",
"blocked_install_message": "Adblock Plus, by Eyeo. Highly sketchy, avoid & just use uBlock Origin instead."
},
"firefox@ghostery.com": {
"installation_mode": "blocked",
"blocked_install_message": "Ghostery Privacy Ad Blocker. Highly sketchy, has previously sold user data, Just use uBlock Origin."
},
"jid1-NIfFY2CA8fy1tg@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "AdBlock, by Eyeo. Highly sketchy, avoid & just use uBlock Origin instead."
},
"https-everywhere@eff.org": {
"installation_mode": "blocked",
"blocked_install_message": "HTTPS Everywhere. Deprecated, also useless with HTTPS-Only Mode (which we enforce) anyways."
},
"87677a2c52b84ad3a151a4a72f5bd3c4@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "Grammarly. Keylogger, also very sketchy... if you insist on this type of invasive spell-checking, just use LanguageTool instead, though even that I would be cautious of."
},
"jid1-93CWPmRbVPjRQA@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "Honey, by PayPal, horrible privacy policy."
},
"abb@amazon.com": {
"installation_mode": "blocked",
"blocked_install-message": "Amazon Assistant, raises serious privacy concerns. Also appears dead anyways."
},
"CanvasBlocker@kkapsner.de": {
"installation_mode": "blocked",
"blocked_install_message": "CanvasBlocker, unnecessary with RFP or ETP (Which we enforce)."
},
"jid1-dwtFBkQjb3SIQp@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "AdBlocker Lite, appears dead."
},
"jid1-BoFifL9Vbdl2zQ@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "Decentraleyes. Very outdated, just use LocalCDN instead if needed."
},
"firefox@tampermonkey.net": {
"installation_mode": "blocked",
"blocked_install_message": "Tampermonkey. Closed source, just use Violentmonkey instead if needed."
},
"jid1-KKzOGWgsW3Ao4Q@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "I don't care about cookies, by Avast. Highly sketchy & known for selling data. Just use Firefox's built-in cookie banner blocking & uBlock Origin, or `I still don't care about cookies` if really needed instead."
},
"{c909a72e-e04b-4528-b14a-f721df46d776}": {
"installation_mode": "blocked",
"blocked_install_message": "Adblock_S, appears dead."
},
"sp@avast.com": {
"installation_mode": "blocked",
"blocked_install_message": "Avast SafePrice, by Avast. Highly sketchy & known for selling data."
},
"wrc@avast.com": {
"installation_mode": "blocked",
"blocked_install_message": "Avast Online Security, by Avast. Highly sketchy & known for selling data. Also unnecessary with Google Safe Browsing & uBlock Origin, avoid."
},
"secureline-vpn@avast.com": {
"installation_mode": "blocked",
"blocked_install_message": "Avast SecureLine VPN, by Avast. Highly sketchy & known for selling data."
},
"aos@avg.com": {
"installation_mode": "blocked",
"blocked_install_message": "AVG Online Security, by Avast. Highly sketchy & known for selling data. Also unnecessary with Google Safe Browsing & uBlock Origin, avoid."
},
"nortonsafeweb@symantec.com": {
"installtaion_mode": "blocked",
"blocked_install_message": "Norton Safe Web, by Norton. Must I say more? Would almost rather getting a virus than installing this crap... Also unnecessary with Google Safe Browsing & uBlock Origin, avoid."
},
"idsafe@norton.com": {
"installation_mode": "blocked",
"blocked_install_message": "Norton Password Manager, by Norton. Must I say more? Would almost rather getting a virus than installing this crap..."
},
"{8A0D66E3-1C08-49A6-8F6C-7E024029D199}": {
"installation_mode": "blocked",
"blocked_install_message": "Norton Family, by Norton. Must I say more? Would almost rather getting a virus than installing this crap..."
},
"nordvpnproxy@nordvpn.com": {
"installation_mode": "blocked",
"blocked_install_message": "NordVPN, highly sketchy. Please just use a trustworthy VPN like Mullvad or ProtonVPN instead."
},
"nordpassStandalone@nordsecurity.com": {
"installation_mode": "blocked",
"blocked_install_message": "NordPass, by NordVPN. Highly sketchy. Please just use a trustworthy password manager like Bitwarden or Proton Pass instead."
},
"nordpass@nordpass.com": {
"installation_mode": "blocked",
"blocked_install_message": "NordPass, by NordVPN. Highly sketchy. Please just use a trustworthy password manager like Bitwarden or Proton Pass instead."
},
"{2f182d41-fd03-4a6d-938d-081419586c37}": {
"installation_mode": "blocked",
"blocked_install_message": "Google Analytics Opt-out, by emano waldeck. Unnecessary with content blocking."
},
"{9363e9cd-be75-42fb-b787-3b0103e2acc7}": {
"installation_mode": "blocked",
"blocked_install_message": "Google Analytics Opt-Out, by Vishwas. Unnecessary with content blocking."
},
"jid1-16aeif9OQIRKxA@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "Search and New Tab, by Yahoo. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"{635abd67-4fe9-1b23-4f01-e679fa7484c1}": {
"installation_mode": "blocked",
"blocked_install_message": "Yahoo Toolbar and New Tab, by Yahoo. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"@yset": {
"installation_mode": "blocked",
"blocked_install_message": "Yahoo Search Addon, by Yahoo. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"@yahoo_wider_mail_extension": {
"installation_mode": "blocked",
"blocked_install_message": "Search and Wider Mail, by Yahoo. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"{98dc1b2a-d86b-4dcd-b73c-b0abde809db4}": {
"installation_mode": "blocked",
"blocked_install_message": "OneSearch, by Yahoo. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"jid1-G80Ec8LLEbK5fQ@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "New Tab, by Yahoo. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"active_eue_enteprise@bmc.com": {
"installation_mode": "blocked",
"blocked_install_message": "BMC TrueSight, Real User Monitoring, probably self-explanatory why blocked..."
},
"search@ghostery.com": {
"installation_mode": "blocked",
"blocked_install_message": "Ghostery Private Search for Firefox, by Ghostery. Unnecessary, just set in either about:preferences#search or from the Omnibox. I would avoid Ghostery Search anyways due to the company's sketchy practices & past of selling user data."
},
"amazondotcom@search.mozilla.org": {
"installation_mode": "blocked",
"blocked_install_message": "Mozilla's extension for the built-in Amazon Search Engine. Amazon should be avoided due to its horrible privacy practices, but regardless, Amazon still appears to be selectable as a search engine with this removed."
},
"bing@search.mozilla.org": {
"installation_mode": "blocked",
"blocked_install_message": "Mozilla's extension for the built-in Bing Search Engine. Bing should be avoided due to its horrible privacy practices, but regardless, Bing still appears to be selectable as a search engine with this removed."
},
"ebay@search.mozilla.org": {
"installation_mode": "blocked",
"blocked_install_message": "Mozilla's extension for the built-in eBay Search Engine. eBay should be avoided due to its horrible privacy practices, but regardless, eBay still appears to be selectable as a search engine with this removed."
},
"google@search.mozilla.org": {
"installation_mode": "blocked",
"blocked_install_message": "Mozilla's extension for the built-in Google Search Engine. Google should be avoided due to its horrible privacy practices, but regardless, Google still appears to be selectable as a search engine with this removed."
},
"{585280b0-ee78-428a-92c5-3fb3c0b85460}": {
"installation_mode": "blocked",
"blocked_install_message": "CyberGhost VPN Free Proxy, by Kape. Highly sketchy. Please just use a trustworthy VPN like Mullvad or ProtonVPN instead."
},
"{76f42345-d120-4c8e-bdd4-63cf95b780fb}": {
"installation_mode": "blocked",
"blocked_install_message": "CyberGhost Cookie Cleaner, by Kape. Highly sketchy... and also completely useless with our tweaks. Avoid."
},
"{732216ec-0dab-43bb-ac85-4b5e1977599d}": {
"installation_mode": "blocked",
"blocked_install_message": "Surfshark VPN Extension, by NordVPN. Highly sketchy. Please just use a trustworthy VPN like Mullvad or ProtonVPN instead."
},
"{3e4d2037-d300-4e95-859d-3cba866f46d3}": {
"installation_mode": "blocked",
"blocked_install_message": "Private Internet Access, by Kape. Highly sketchy. Please just use a trustworthy VPN like Mullvad or ProtonVPN instead."
},
"firefox-addon@expressvpn.com": {
"installation_mode": "blocked",
"blocked_install_message": "ExpressVPN, by Kape. Highly sketchy. Please just use a trustworthy VPN like Mullvad or ProtonVPN instead."
},
"{8d8ca802-6b23-43ed-9445-e05d48579542}": {
"installation_mode": "blocked",
"blocked_install_message": "Microsoft Bing Search Engine, by Microsoft. Please don't use Bing... but if you insist, extension is unnecessary, just set it in about:preferences#search."
},
"{9b43dad5-885b-4f0d-882f-e945b7e4b96f}": {
"installation_mode": "blocked",
"blocked_install_message": "MSN Homepage and Bing Search Engine, by Microsoft. Please don't use Bing... but if you insist, extension is unnecessary, just set it in about:preferences#search."
},
"{a07b7886-3015-4959-9a88-4273860edd6d}": {
"installation_mode": "blocked",
"blocked_install_message": "Microsoft Bing Homepage and Search Engine, by Microsoft. Please don't use Bing... but if you insist, extension is unnecessary, just set it in about:preferences#search."
},
"{7e39f3c8-2ef5-46ea-80d0-f8b8f72541c5}": {
"installation_mode": "blocked",
"blocked_install_message": "MSN Homepage, New Tab and Bing Search Engine, by Microsoft. Please don't use Bing... but if you insist, extension is unnecessary, just set it in about:preferences#search."
},
"{cfa868c0-6239-47df-bc81-54e13151ec2e}": {
"installation_mode": "blocked",
"blocked_install_message": "Microsoft Bing Homepage, by Microsoft. Please don't use Bing... but if you insist, extension is unnecessary, just set it in about:preferences#search."
},
"adblockultimate@adblockultimate.net": {
"installation_mode": "blocked",
"blocked_install_message": "AdBlocker Ultimate, by AdAvoid. Highly sketchy. https://x.com/gorhill/status/1165747661691064322. Just use uBlock Origin."
},
"qwantcomforfirefox@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "Qwant VIPrivacy, by Qwant. Unnecessary, just set in either about:preferences#search or from the Omnibox."
},
"qwant-search-firefox@qwant.com": {
"installation_mode": "blocked",
"blocked_install_message": "Qwant - Search engine, by Qwant. Unnecessary, just set in either about:preferences#search or from the Omnibox."
},
"qwant-p1-firefox@qwant.com": {
"installation_mode": "blocked",
"blocked_install_message": "Qwant for you, by Qwant. Unnecessary, just set in either about:preferences#search or from the Omnibox."
},
"{20fc2e06-e3e4-4b2b-812b-ab431220cada}": {
"installation_mode": "blocked",
"blocked_install_message": "Startpage. Unncessary, just set in either about:preferences#search or from the Omnibox."
},
"firefox@newsguardtech.com": {
"installation_mode": "blocked",
"blocked_install_message": "NewsGuard, sketchy & poor privacy policy."
},
"firefox@hg.newsguardtech.com": {
"installation_mode": "blocked",
"blocked_install_message": "HealthGuard, by NewsGuard. Sketchy & poor privacy policy."
},
"{44df5123-f715-9146-bfaa-c6e8d4461d44}": {
"installation_mode": "blocked",
"blocked_install_message": "Fakespot, by Mozilla. Poor privacy policy."
},
"firefox-translations-addon@mozilla.org": {
"installation_mode": "blocked",
"blocked_install_message": "Firefox Translations, by Mozilla. Dead. Also unnecessary since the Translations feature is now built in."
},
"@contain-facebook": {
"installation_mode": "blocked",
"blocked_install_message": "Facebook Container, by Mozilla. Unnecessary since cookies are now isolated by default, and if you still wish to create a container for Facebook, you can do so at about:preferences#general or through the Multi-Account Containers extension instead."
},
"{96ef5869-e3ba-4d21-b86e-21b163096400}": {
"installation_mode": "blocked",
"blocked_install_message": "Font Fingerprint Defender, by ilGur. Unnecessary with RFP or ETP (Which we enforce)."
},
"{2cf5dbed-78fe-4bd5-9524-38fdf837be98}": {
"installation_mode": "blocked",
"blocked_install_message": "WebGL Fingerprint Defender, by ilGur. Unnecessary with RFP or ETP (Which we enforce)."
},
"{87edebac-93fe-4780-8945-598a961b793f}": {
"installation_mode": "blocked",
"blocked_install_message": "Fingerprint Shield, by Francesco De Stefano. Unnecessary with RFP or ETP (Which we enforce)."
},
"{e98b4b87-bc39-439f-a175-b15fbe4a06c0}": {
"installation_mode": "blocked",
"blocked_install_message": "Canvas Blocker - Fingerprint Protect, by Joue. Unnecessary with RFP or ETP (Which we enforce). Also appears dead."
},
"{b2531c6a-ce38-4b46-961e-62a6e89a1b17}": {
"installation_mode": "blocked",
"blocked_install_message": "No Fingerprint, by Sam0230. Unnecessary with RFP or ETP (Which we enforce). Also appears dead."
},
"{46cc18f3-9054-4edd-9441-102a1021b5d0}": {
"installation_mode": "blocked",
"blocked_install_message": "Fingerprint Spoof, by ns. Unnecessary with RFP or ETP (Which we enforce). Also appears dead."
},
"{6476684c-e1dc-4505-8bb6-5f0f9663f78e}": {
"installation_mode": "blocked",
"blocked_install_message": "BP Block Font Fingerprint, by BrowserPlugs. Unnecessary with RFP or ETP (Which we enforce)."
},
"{2ed00a98-3452-4535-a99d-0bb13056d09f}": {
"installation_mode": "blocked",
"blocked_install_message": "Browser Plugs Spoof FP Random, by BrowserPlugs. Unnecessary with RFP or ETP (Which we enforce)."
},
"{e969f389-ecf2-4ba5-b6b3-95157461366c}": {
"installation_mode": "blocked",
"blocked_install_message": "Blend In and Spoof Everything, by BrowserPlugs. Unnecessary with RFP or ETP (Which we enforce)."
},
"jsr@javascriptrestrictor": {
"installation_mode": "blocked",
"blocked_install_message": "JShelter, by Libor Polčák. Unnecessary with RFP or ETP (Which we enforce)."
},
"mipfingerprint@mip.co.za": {
"installation_mode": "blocked",
"blocked_install_message": "MIP Fingerprint, by MIP Holdings. Unnecessary with RFP or ETP (Which we enforce). Also appears dead."
},
"{07bccf58-b5f1-425c-b7ad-2301e1a42704}": {
"installation_mode": "blocked",
"blocked_install_message": "Fingerprint shelter, by Ol. Unnecessary with RFP or ETP (Which we enforce). Also appears dead."
},
"{6ff498ff-a3b6-4891-a614-12a825d4efcf}": {
"intallation_mode": "blocked",
"blocked_install_message": "Trace, by AbsoluteDouble. Unnecessary with RFP or ETP (Which we enforce). Also appears dead."
},
"{ff6bdf28-4fb3-42a0-8e36-11b4125a6ce4}": {
"installation_mode": "blocked",
"blocked_install_message": "Logify - Parental Control, by Logify. Remote Monitoring."
},
"{17c75373-e1fc-43a5-a05b-7f17e306359e}": {
"installation_mode": "blocked",
"blocked_install_message": "Stay secure with CyberGhost VPN Free Proxy, by Running __Elephants. CyberGhost is Highly sketchy, by Kape. This extension also appears fake & unmaintained. Please just use a trustworthy VPN like Mullvad or ProtonVPN instead."
},
"support@lastpass.com": {
"installation_mode": "blocked",
"blocked_install_message": "LastPass Password Manager, by LastPass. Sketchy & has had serious breaches. Please just use a trustworthy password manager like Bitwarden or Proton Pass instead."
},
"{b3e677f4-1150-4387-8629-da738260a48e}": {
"installation_mode": "blocked",
"blocked_install_message": "Smart HTTPS, by ilGur. Appears dead, and useless with HTTPS-Only Mode (which we enforce) anyways."
},
"InternetProtection@360safe.com": {
"installation_mode": "blocked",
"blocked_install_message": "360 Internet Protection, by 360 Total Security. Highly sketchy, also unnecessary with Google Safe Browsing & uBlock Origin. Avoid."
},
"firefox-webext@zenmate.com": {
"installation_mode": "blocked",
"blocked_install_message": "ZenMate Free VPN, by ZenMate (Kape). Highly sketchy, please just use a trustworthy VPN like Mullvad or ProtonVPN instead"
},
"{74fc443d-ab0b-42b2-95d0-890f2d8092cb}": {
"installation_mode": "blocked",
"blocked_install_message": "HTTP to HTTPS, by Balvin. Useless with HTTPS-Only Mode (which we enforce)."
},
"{4d5b7a5e-5232-9e45-97f4-f8e1ca2626e5}": {
"installation_mode": "blocked",
"blocked_install_message": "Eno® from Capital One®, by Capital One. Very sketchy, avoid."
},
"1block@example.com": {
"installation_mode": "blocked",
"blocked_install_message": "Dead? Adblock - 1Block, by 1VPN. Highly sketchy, appears to even contain advertising. Avoid & just use uBlock Origin instead."
},
"1vpn@example.com": {
"installation_mode": "blocked",
"blocked_install_message": "Free VPN & Adblock - 1VPN, by 1VPN. See 1Block above. Highly sketchy, appears to even contain advertising. Avoid & just use uBlock Origin with a reputable VPN like Proton or Mullvad instead."
},
"https-by-default@robwu.nl": {
"installation_mode": "blocked",
"blocked_install_message": "HTTPS by default, by Rob W. Useless with HTTPS-Only Mode (which we enforce)."
},
"support@netzilo.com": {
"installation_mode": "blocked",
"blocked_install_message": "Netzilo Secure Browser, by Netzilo Inc. Remote Monitoring. "
},
"{d0bfdcce-52c7-4b32-bb45-948f62db8d3f}": {
"installation_mode": "blocked",
"blocked_install_message": "Flash Video Player for Facebook™, by Baris Derin. Dead technology, but for some reason this is still being updated? Very suspicious."
},
"{f3bd3dd2-2888-44c5-91a2-2caeb33fb898}": {
"installation_mode": "blocked",
"blocked_install_message": "YouTube Flash Video Player, by Baris Derin. Dead technology, but for some reason this is still being updated? Very suspicious."
},
"jid1-n8wH2cBfc2QaUj@jetpack": {
"installation_mode": "blocked",
"blocked_install_message": "Flash Block (Plus), by AdblockLite. Dead technology, but for some reason this is still being updated?"
},
"@contain-facebook-newalexandria": {
"installation_mode": "blocked",
"blocked_install_message": "Facebook Container - Expanded, by New Alexandria. Unnecessary since cookies are now isolated by default, and if you still wish to create a container for Facebook, you can do so at about:preferences#general or through the Multi-Account Containers extension instead. Also appears dead anyways."
},
"@contain-google-with-integrations": {
"installation_mode": "blocked",
"blocked_install_message": "Google Container - with Integrations, by New Alexandria. Unnecessary since cookies are now isolated by default, and if you still wish to create a container for Google, you can do so at about:preferences#general or through the Multi-Account Containers extension instead. Also appears dead anyways."
},
"@contain-google": {
"installation_mode": "blocked",
"blocked_install_message": "Google Container, by containers-everywhere. Unnecessary since cookies are now isolated by default, and if you still wish to create a container for Google, you can do so at about:preferences#general or through the Multi-Account Containers extension instead. Also appears dead anyways."
},
"@contain-google-minus-youtube": {
"installation_mode": "blocked",
"blocked_install_message": "Google Container Minus YouTube, by yoasif. Unnecessary since cookies are now isolated by default, and if you still wish to create a container for Google, you can do so at about:preferences#general or through the Multi-Account Containers extension instead."
},
"@contain-google-minus-youtube-and-searchpages": {
"installation_mode": "blocked",
"blocked_install_message": "Google Container Minus YouTube & Search Pages, by Bernd Bestel. Unnecessary since cookies are now isolated by default, and if you still wish to create a container for Google, you can do so at about:preferences#general or through the Multi-Account Containers extension instead."
},
"YandexSearchExtension@io.librity": {
"installation_mode": "blocked",
"blocked_install_message": "Yandex search, by Librity. Please don't use Yandex... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"yasearch@yandex.ru": {
"installation_mode": "blocked",
"blocked_install_message": "Yandex.Bar, by Yandex. Please don't use Yandex... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"homeutil@yandex.ru": {
"installation_mode": "blocked",
"blocked_install_message": "Yandex - Homepage, by Yandex. Please don't use Yandex... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"weather@yandex.ru": {
"installation_mode": "blocked",
"blocked_install_message": "Yandex Elements Weather, by Yandex. Extremely sketchy, requires highly invasive permissions. Yandex generally is sketchy and should be avoided. Just use Firefox's new weather feature on about:home, or an extension like Tabliss."
},
"{710a25a7-051f-4059-8952-abbaa9aa6121}": {
"installation_mode": "blocked",
"blocked_install_message": "FakeBux for Roblox, by LuckyDev. Just use Inspect Element."
},
"{9763fbae-6f90-483b-a8ca-aeb9ccfdacac}": {
"installation_mode": "blocked",
"blocked_install_message": "IRobux, by 'Roblox Corporation'. Impersonation scam extension, no idea how this hasn't been removed from the AMO or got signed in the first place."
},
"{0dce8429-bdf7-4610-b3cf-72d0f86278d5}": {
"installation_mode": "blocked",
"blocked_install_message": "Robux Changer, by indxd. Just use Inspect Element."
},
"BraveSearchExtension@io.Uvera": {
"installation_mode": "blocked",
"blocked_install_message": "Brave search, by Dusan Uveric. Extension is unnecessary, just add Brave Search in either about:preferences#search or from the Omnibox."
},
"addon@customsearchtool.com": {
"installation_mode": "blocked",
"blocked_install_message": "Custom Search Tool. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"Maps_Assist___Custom_Web_Search_VeyzPDMlKh@mapsassist.com": {
"installation_mode": "blocked",
"blocked_install_message": "Maps Assist & Custom Web Search. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Safeplex_Search_qeKaqkdrwd@safeplexsearch.com": {
"installation_mode": "blocked",
"blocked_install_message": "Safeplex Search. Hijacks search engine to Yahoo without user consent/knowledge. (Also just completely unncessary anyways with uBlock Origin & Google Safe Browsing :/)"
},
"addon@maproutepro.com": {
"installation_mode": "blocked",
"blocked_install_message": "Map Route Pro and Search. Hijacks search engine to Yahoo without user consent/knowledge."
},
"FreespokeSearchExtension@com.Freespoke": {
"installation_mode": "blocked",
"blocked_install_message": "Freespoke Search. Extension is unnecessary, just add this in either about:preferences#search or from the Omnibox."
},
"earthview360_newvers@earthview360.org": {
"installation_mode": "blocked",
"blocked_install_message": "Earth View 360° & Custom Web Search. Hijacks search engine to Yahoo without user consent/knowledge."
},
"sp@SearchesCentral": {
"installation_mode": "blocked",
"blocked_install_message": "Sponsored Search, by SearchesCentral/Search Smart/FreeTestNow. Adware & hijacks search engine to Yahoo without user consent/knowledge."
},
"ep@FreeTestNow": {
"installation_mode": "blocked",
"blocked_install_message": "Sponsored Search, by SearchesCentral/Search Smart/FreeTestNow. Adware & hijacks search engine to Yahoo without user consent/knowledge."
},
"sp@SearchSmart": {
"installation_mode": "blocked",
"blocked_install_message": "Search Smart, by SearchesCentral/Search Smart/FreeTestNow. Adware & hijacks search engine to Yahoo without user consent/knowledge."
},
"{441ae0e7-c955-4b0e-8209-99462af458db}": {
"installation_mode": "blocked",
"blocked_install_message": "Presearch.com Search Extension. Extension is unnecessary, just add this in either about:preferences#search or from the Omnibox."
},
"{43d20840-2895-4866-9d79-4f6f2ea537f7}": {
"installation_mode": "blocked",
"blocked_install_message": "Music Search, by GetTheResult. Hijacks search engine to Yahoo without user consent/knowledge."
},
"{ff5dfca6-4e75-4882-a145-b58a4afc35a7}": {
"installation_mode": "blocked",
"blocked_install_message": "Movie Search, by GetTheResult. Hijacks search engine to Yahoo without user consent/knowledge."
},
"{25f17283-8325-42fb-812e-193c8de90b04}": {
"installation_mode": "blocked",
"blocked_install_message": "Sport Search, by GetTheResult. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Converter_Suite_fqRObEsLaM@convertersuite.com": {
"installation_mode": "blocked",
"blocked_install_message": "Converter Suite. Hijacks search engine to Yahoo without user consent/knowledge."
},
"{2a168bd0-55d2-466f-9c68-077c416943be}": {
"installation_mode": "blocked",
"blocked_install_message": "YouTube Search Engine, by A. Taha Baki. Extension is unnecessary, just add YouTube in either about:preferences#search or from the Omnibox."
},
"{af37054b-3ace-46a2-ac59-709e4412bec6}": {
"installation_mode": "blocked",
"blocked_install_message": "Add custom search engine, by Tom Schuster. Unnecessary, just add your search engine of choice in either about:preferences#search or from the Omnibox on the search engine's webpage"
},
"Ezy_Photo_Tab___Custom_Web_Search_YALalKMirg@ezyphototab.com": {
"installation_mode": "blocked",
"blocked_install_message": "Ezy Photo Tab & Custom Web Search, by EzyPhotoTab. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Ezy_Alarm_Clock___Custom_Web_Search_aGDLGGilLT@ezyalarmclock.com": {
"installation_mode": "blocked",
"blocked_install_message": "Ezy Alarm Clock & Custom Web Search, by Ezy Alarm Clock & Custom Web Search. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Ezy_Screenshot___Custom_Web_Search_nKZANPHKLR@ezyscreenshot.com": {
"installation_mode": "blocked",
"blocked_install_message": "Ezy Screenshot & Custom Web Search, by Ezy Screenshot. Hijacks search engine to Yahoo without user consent/knowledge."
},
"{d04b0b40-3dab-4f0b-97a6-04ec3eddbfb0}": {
"installation_mode": "blocked",
"blocked_install_message": "Ecosia, by Ecosia Dev Team. Extension is unnecessary, just add Ecosia in either about:preferences#search or from the Omnibox."
},
"Task_Manager_Tab___Custom_Web_Search_nKQMsPVbct@taskmanagertab.com": {
"installation_mode": "blocked",
"blocked_install_message": "Task Manager Tab & Custom Web Search, by TaskManagerTab. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Quick_Live_News_spxMukSrlT@quicklivenews.com": {
"installation_mode": "blocked",
"blocked_install_message": "Quick Live News & Custom Web Search, by QuickLiveNews. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Flight_Tab_Pro___Custom_Web_Search_yVOErTvhoC@flighttabpro.com": {
"installation_mode": "blocked",
"blocked_install_message": "Flight Tab Pro & Custom Web Search, by FlightTabPro. Hijacks search engine to Yahoo without user consent/knowledge."
},
"{2e0fa8dd-c43c-438c-b77b-95ddc3d893ec}": {
"installation_mode": "blocked",
"blocked_install_message": "Add Brave Search, by maaa. Extension is unnecessary, just add Brave Search in either about:preferences#search or from the Omnibox."
},
"Easy_Games_Tab_zKsDuEzLrv@easygamestab.com": {
"installation_mode": "blocked",
"blocked_install_message": "Easy Games Tab & Custom Web Search, by EasyGamesTab. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Ezy_Speed_Test___Custom_Web_Search_nybAAzaSyK@ezyspeedtest.com": {
"installation_mode": "blocked",
"blocked_install_message": "Ezy Speed Test & Custom Web Search, by Ezy Speed Test. Hijacks search engine to Yahoo without user consent/knowledge."
},
"viewmanuals_newvers@viewmanuals.com": {
"installation_mode": "blocked",
"blocked_install_message": "View Manuals & Custom Web Search, by View Manuals. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Package_Tracking_Tab___Custom_Web_Search_JVVfIFSBVe@packagetrackingtab.com": {
"installation_mode": "blocked",
"blocked_install_message": "Package Tracking Tab & Custom Web Search, by PackageTrackingTab. Hijacks search engine to Yahoo without user consent/knowledge."
},
"ebooksearch1@candytech.com": {
"installation_mode": "blocked",
"blocked_install_message": "eBook Search, by Candytechltd. Hijacks search engine to genieosearch.com without user consent/knowledge."
},
"Quick_Recipe_Hub___Custom_Web_Search_MTyoGHhulF@quickrecipehub.com": {
"installation_mode": "blocked",
"blocked_install_message": "Quick Recipe Hub & Custom Web Search, by Quick Recipe Hub. Hijacks search engine to Yahoo without user consent/knowledge."
},
"addon@speedtestmeter.com": {
"installation_mode": "blocked",
"blocked_install_message": "Speed Test Meter and Search. Hijacks search engine to Yahoo without user consent/knowledge."
},
"StartpageSearchExtension@roteKlaue": {
"installation_mode": "blocked",
"blocked_install_message": "Startpage search, by roteKlaue. Unncessary, just add Startpage in either about:preferences#search or from the Omnibox."
},
"addon@documentconverter.com": {
"installation_mode": "blocked",
"blocked_install_message": "Document Converter & Search. Hijacks search engine to Yahoo without user consent/knowledge."
},
"viewrecipes_aill@viewrecipes.net": {
"installation_mode": "blocked",
"blocked_install_message": "View Recipes & Custom Web Search, by View Recipes. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Turbo_Converter___Custom_Web_Search_jkERzVmVos@turboconverter.co": {
"installation_mode": "blocked",
"blocked_install_message": "Turbo Converter & Custom Web Search, by Turbo Converter. Hijacks search engine to Yahoo without user consent/knowledge."
},
"Easy_Manuals_Finder_and_Custom_Web_Search_KtQPWLAgRu@easymanualsfinder.co": {
"installation_mode": "blocked",
"blocked_install_message": "Easy Manuals Finder & Custom Web Search. Hijacks search engine to Yahoo without user consent/knowledge."
},
"search-searx@jirka-justra.cz": {
"installation_mode": "blocked",
"blocked_install_message": "search-searx, by Jirka Justra. Extension is unnecessary, just add it in either about:preferences#search or from the Omnibox."
},
"search-odysee.com@jirka-justra.cz": {
"installation_mode": "blocked",
"blocked_install_message": "search-odysee.com, by Jirka Justra. Extension is unnecessary, just add it in either about:preferences#search or from the Omnibox."
},
"search-thomann--intl@jirka-justra.cz": {
"installation_mode": "blocked",
"blocked_install_message": "search-thomann--intl, by Jirka Justra. Extension is unnecessary, just add it in either about:preferences#search or from the Omnibox."
},
"search-fastshare.cz@jirka-justra.cz": {
"installation_mode": "blocked",
"blocked_install_message": "search-fastshare.cz, by Jirka Justra. Extension is unnecessary, just add it in either about:preferences#search or from the Omnibox."
},
"search-kytary.cz@jirka-justra.cz": {
"installation_mode": "blocked",
"blocked_install_message": "search-kytary.cz, by Jirka Justra. Extension is unnecessary, just add it in either about:preferences#search or from the Omnibox."
},
"search-thomann--cz@jirka-justra.cz": {
"installation_mode": "blocked",
"blocked_install_message": "search-thomann--cz, by Jirka Justra. Extension is unnecessary, just add it in either about:preferences#search or from the Omnibox."
},
"search-gearslutz@jirka-justra.cz": {
"installation_mode": "blocked",
"blocked_install_message": "search-gearslutz, by Jirka Justra. Extension is unnecessary, just add it in either about:preferences#search or from the Omnibox."
},
"addon@trendingnews.com": {
"installation_mode": "blocked",
"blocked_install_message": "Trending News & Search. Hijacks search engine to Yahoo without user consent/knowledge."
},
"{1e924475-d910-44ab-bed8-af34439d2a8a}": {
"installation_mode": "blocked",
"blocked_install_message": "Just Search Qwant, by Naresh. Extension is unnecessary, just add Qwant in either about:preferences#search or from the Omnibox."
},
"Weather_Authority___Custom_Web_Search_TOLImHKtPk@weatherauthority.co": {
"installation_mode": "blocked",
"blocked_install_message": "Weather Authority & Custom Web Search, by Weather Authority. Hijacks search engine to Yahoo without user consent/knowledge."
},
"@contain-twitter": {
"installation_mode": "blocked",
"blocked_install_message": "Twitter Container, by Vishwa. Unnecessary since cookies are now isolated by default, and if you still wish to create a container for Twitter, you can do so at about:preferences#general or through the Multi-Account Containers extension instead."
},
"@twitter_x_container": {
"installation_mode": "blocked",
"blocked_install_message": "Twitter/X Container, by Zachary E. Unnecessary since cookies are now isolated by default, and if you still wish to create a container for Twitter, you can do so at about:preferences#general or through the Multi-Account Containers extension instead."
},
"firefox@vid.io": {
"installation_mode": "blocked",
"blocked_install_message": "vidIQ Vision for YouTube, by vidIQ. Sketchy."
},
"{50f5675e-2d43-4894-a3b6-ad933f6a31a0}": {
"installation_mode": "blocked",
"blocked_install_message": "SignalHire. Data Broker."
},
"{248e6a49-f636-4c81-9899-a456eb6291a8}": {
"installation_mode": "blocked",
"blocked_install_message": "Ground News Bias Checker, by Ground News. Very sketchy, poor privacy policy. Avoid."
},
"swisscows@swisscows.ch": {
"installation_mode": "blocked",
"blocked_install_message": "Swisscows, by Swisscows AG. Extension is unnecessary, just set Swisscows in either about:preferences#search or from the Omnibox."
},
"{2d158f19-1146-4bfe-9085-cc15f947bb35}": {
"installation_mode": "blocked",
"blocked_install_message": "Yahoo! Search, by balduran98. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"{0220de78-d398-47cb-8323-ebab3a845d01}": {
"installation_mode": "blocked",
"blocked_install_message": "Yahoo New Tab, by heubergen. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"{b69c9b46-2236-45c2-9abd-143972558677}": {
"installation_mode": "blocked",
"blocked_install_message": "Yahoo jp, by Viktor. Please don't use Yahoo... but if you insist, extension is unnecessary, just set it in either about:preferences#search or from the Omnibox."
},
"{aa9eef0b-ca4e-4e24-b42e-e1b006c7160a}": {
"installation_mode": "blocked",
"blocked_install_message": "Safe Search Powered by Yahoo, by Safely. Hijacks search engine to Yahoo without user consent/knowledge."
},
"easyprint@easyprintapp.net": {
"installation_mode": "blocked",
"blocked_install_message": "Easy Print. Hijacks search engine to Yahoo without user consent/knowledge."
},
"viewpdf_newvers@viewpdf.org": {
"installation_mode": "blocked",
"blocked_install_message": "View PDF. Hijacks search engine to Yahoo without user consent/knowledge."
},
"{7313aced-ab7c-40fb-bf3a-115e91ba6c2a}": {
"installation_mode": "blocked",
"blocked_install_message": "Maps Driving Directions, by MyDirections. Hijacks search engine & new tab page, accesses browser history, very sketchy..."
},
"easydrivingdirections_newvers@easydrivingdirections.com": {
"installation_mode": "blocked",
"blocked_install_message": "Maps & Driving Directions. Hijacks search engine to Yahoo without user consent/knowledge."
},
"{6cbc4940-eb87-4dba-9654-1002fb91e9e0}": {
"installation_mode": "blocked",
"blocked_install_message": "Google Tag Manager Blocker, by heubergen. Unnecessary with uBlock Origin or any content blocking extension."
},
"{3968ec87-3c9f-45cd-8d9e-7f6d1f3a5093}": {
"installation_mode": "blocked",
"blocked_install_message": "Glider Proctoring, by GLIDER.ai. Used for remote monitoring/test 'Proctoring'"
},
"{67ed3e87-6d34-4e72-9482-45876b90cf8d}": {
"installation_mode": "blocked",
"blocked_install_message": "GLIDER.ai Proctoring, by GLIDER.ai. Used for remote monitoring/test 'Proctoring'"
},
"webrootsecure@webroot.com": {
"installation_mode": "blocked",
"blocked_install_message": "Web Threat Shield, by Webroot. Seen this force install itself on various PCs. Also unnecessary with Google Safe Browsing & uBlock Origin, avoid."
},
"{abbf120b-a853-4fbd-a139-7e7dcc2d3e86}": {
"installation_mode": "blocked",
"blocked_install_message": "Scam WebRoot Activation theme"
},
"{eefb374b-ea77-47a1-bb1b-bd5758569056}": {
"installation_mode": "blocked",
"blocked_install_message": "Scam WebRoot Activation theme"
},
"{f637a841-f7e3-4055-a189-6951a9d4fc4f}": {
"installation_mode": "blocked",
"blocked_install_message": "Scam WebRoot Activation theme"
},
"{b9ddfa6d-fb38-47a6-8cf2-8d1044540a1f}": {
"installation_mode": "blocked",
"blocked_install_message": "Scam WebRoot Activation theme"
},
"{94cadb67-daa0-4761-b6b5-171e5d61da2e}": {
"installation_mode": "blocked",
"blocked_install_message": "SingleFile Auto-Save, by gildas. Very concerning from a privacy perspective."
}
},
"ExtensionUpdate": true,
"FirefoxHome": {
"SponsoredTopSites": false,
"Pocket": false,
"SponsoredPocket": false,
"Snippets": false,
"Locked": true
},
"FirefoxSuggest": {
"WebSuggestions": false,
"SponsoredSuggestions": false,
"ImproveSuggest": false,
"Locked": true
},
"GoToIntranetSiteForSingleWordEntryInAddressBar": false,
"HttpsOnlyMode": "force_enabled",
"NetworkPrediction": false,
"NoDefaultBookmarks": true,
"OverrideFirstRunPage": "",
"OverridePostUpdatePage": "",
"PDFjs": {
"EnablePermissions": false
},
"Permissions": {
"Location": {
"BlockNewRequests": true,
"Locked": false
},
"Notifications": {
"BlockNewRequests": true,
"Locked": false
},
"VirtualReality": {
"BlockNewRequests": true,
"Locked": true
},
"Autoplay": {
"Default": "block-audio-video",
"Locked": false
}
},
"PopupBlocking": {
"Default": true,
"Locked": false
},
"PostQuantumKeyAgreementEnabled": true,
"Preferences": {
"browser.contentblocking.category": {
"Value": "strict",
"Status": "locked"
}
},
"PromptForDownloadLocation": true,
"Proxy": {
"UseProxyForDNS": true
},
"SanitizeOnShutdown": {
"Cache": true,
"Sessions": true,
"Locked": true
},
"SearchSuggestEnabled": false,
"SSLVersionMin": "tls1.2",
"StartDownloadsInTempDirectory": true,
"SupportMenu": {
"Title": "Phoenix Issue Tracker",
"URL": "https://phoenix.celenity.dev/issues"
},
"UserMessaging": {
"ExtensionRecommendations": false,
"FeatureRecommendations": false,
"SkipOnboarding": true,
"UrlbarInterventions": false,
"MoreFromMozilla": false,
"Locked": true
},
"WebsiteFilter": {
"Block": [
"*://*.telemetry.mozilla.org/*",
"*://*.ads.prod.webservices.mozgcp.net/*",
"*://*.ads.nonprod.webservices.mozgcp.net/*",
"*://*.anonymco.com/*",
"*://*.contile.services.mozilla.com/*",
"*://*.contile-images.services.mozilla.com/*",
"*://*.getpocket.com/*",
"*://*.snippets.allizom.org/*",
"*://*.snippets.cdn.mozilla.net/*",
"*://*.snippets.mozilla.com/*",
"*://*.snippets-prod.moz.works/*",
"*://*.snippets-prod.oregon-b.moz.works/*",
"*://*.snippets-prod.frankfurt.moz.works/*",
"*://*.snippets-stage.moz.works/*",
"*://*.snippets-stage.oregon-b.moz.works/*",
"*://*.crash-reports.allizom.org/*",
"*://*.crash-reports.mozilla.com/*",
"*://*.crash-reports-xpsp2.mozilla.com/*",
"*://*.crash-stacks.mozilla.com/*",
"*://*.crash-stats.allizom.org/*",
"*://*.crash-stats.mozilla.org/*",
"*://*.crash-stats.mozilla.com/*",
"*://*.socorro.prod.webservices.mozgcp.net/*",
"*://*.socorro-collector.services.mozilla.com/*",
"*://*.socorro-webapp-allizom.stage.mozaws.net/*",
"*://*.socorro-webapp.services.mozilla.com/*",
"*://*.talkback.mozilla.org/*",
"*://*.talkback-public.mozilla.org/*",
"*://*.talkback-reports.mozilla.org/*",
"*://*.data.mozilla.com/*",
"*://*.dataops.mozgcp.net/*",
"*://*.dataservices.mozgcp.net/*",
"*://*.download-stats.mozilla.org/*",
"*://*.download-stats.r53-2.services.mozilla.com/*",
"*://*.normandy.cdn.mozilla.net/*",
"*://*.normandy.nonprod.cloudops.mozgcp.net/*",
"*://*.normandy.prod.cloudops.mozgcp.net/*",
"*://*.normandy.services.mozilla.com/*",
"*://*.normandy-cdn.services.mozilla.com/*",
"*://*.normandy-devtools.services.mozilla.com/*",
"*://*.sentry.nonprod.cloudops.mozgcp.net/*",
"*://*.sentry.prod.cloudops.mozgcp.net/*",
"*://*.telemetry-coverage.mozilla.org/*",
"*://*.coverage.mozilla.org/*",
"*://*.telemetry-coverage.r53-2.services.mozilla.com/*",
"*://*.telemetry-data.r53-2.services.mozilla.com/*",
"*://*.telemetry-incoming.r53-2.services.mozilla.com/*",
"*://*.merino.nonprod.cloudops.mozgcp.net/*",
"*://*.merino.prod.cloudops.mozgcp.net/*",
"*://*.merino.services.mozilla.com/*",
"*://*.survey.mozilla.com/*",
"*://*.qsurvey.mozilla.com/*",
"*://*.fakespot.com/*",
"*://*.fakespot.io/*",
"*://*.getpocket.cdn.mozilla.net/*",
"*://*.getpocket.com/*",
"*://*.getpocket-cdn.prod.mozaws.net/*",
"*://*.img-getpocket.cdn.mozilla.net/*",
"*://*.mozilla-ohttp-fakespot.fastly-edge.com/*",
"*://*.pocket.prod.cloudops.mozgcp.net/*",
"*://*.pocket-image-cache.com/*",
"*://*.spocs.mozilla.net/*",
"*://*.getpocket.dev/*",
"*://*.google-analytics.com/*",
"*://*.googlesyndication.com/*",
"*://*.googletagmanager.com/*",
"*://*.analytics.google.com/*",
"*://*.googletagmanager.com/*",
"*://*.googletagservices.com/*",
"*://*.braze.com/*",
"*://*.sentry.io/*",
"*://*.omappapi.com/*",
"*://*.250analytics.com/*",
"*://*.discovery.addons.mozilla.org/*",
"*://*.discovery.addons.allizom.org/*",
"*://*.discovery.addons-dev.allizom.org/*",
"*://*.services.addons.mozilla.org/api/*/discovery/*",
"*://*.detectportal.firefox.com/*",
"*://*.detectportal.prod.cloudops.mozgcp.net/*",
"*://*.dap-09-3.api.divviup.org/*",
"*://*.dap.services.mozilla.com/*",
"*://*.dap.nonprod.webservices.mozgcp.net/*",
"*://*.dap.prod.webservices.mozgcp.net/*",
"*://*.fuzzing.mozilla.org/*",
"*://*.asan-nightly-frontend-elb-1348905149.us-east-2.elb.amazonaws.com/*",
"*://*.fuzzing.mozilla.org/*",
"*://*.incoming-telemetry.thunderbird.net/*",
"*://*.pipeline-incoming-prod-elb-149169523.us-west-2.elb.amazonaws.com/*",
"*://*.telemetry-prod-1054754349.us-east-1.elb.amazonaws.com/*"
]
},
"Cookies": {
"Block": [
"http://google-analytics.com/",
"https://google-analytics.com/",
"http://analytics.google.com/",
"https://analytics.google.com/",
"http://googletagmanager.com/",
"https://googletagmanager.com/",
"http://googletagservices.com/",
"https://googletagservices.com/",
"http://doubleclick.net/",
"https://doubleclick.net/",
"http://doubleclick-cn.net/",
"https://doubleclick-cn.net/",
"http://doubleclickbygoogle.com/",
"https://doubleclickbygoogle.com/",
"http://doubleclicksearch.com/",
"https://doubleclicksearch.com/",
"http://doubleclickusercontent.com/",
"https://doubleclickusercontent.com/",
"http://googledoubleclick.net/",
"https://googledoubleclick.net/",
"http://doubleclick.com/",
"https://doubleclick.com/",
"http://youtube-nocookie.com/",
"https://youtube-nocookie.com/",
"http://braze.com/",
"https://braze.com/",
"http://sentry.io/",
"https://sentry.io/",
"http://omappapi.com/",
"https://omappapi.com/",
"http://250analytics.com/",
"https://250analytics.com/",
"http://raw.githubusercontent.com/",
"https://raw.githubusercontent.com/",
"http://fonts.googleapis.com/",
"https://fonts.googleapis.com/",
"http://fonts.gstatic.com/",
"https://fonts.gstatic.com/",
"http://scorecardresearch.com/",
"https://scorecardresearch.com/",
"http://quantserve.com/",
"https://quantserve.com/",
"http://ads.google.com/",
"https://ads.google.com/",
"http://ads.google.cn/",
"https://ads.google.cn/",
"http://amazon-adsystem.com/",
"https://amazon-adsystem.com/",
"http://connect.facebook.net/",
"https://connect.facebook.com/",
"http://2mdn.net/",
"https://2mdn.net/",
"http://2mdn-cn.net/",
"https://2mdn-cn.net/",
"http://dartmotif.com/",
"https://dartmotif.com/",
"http://adsbygoogle.com/",
"https://adsbygoogle.com/",
"http://admanager.google.com/",
"https://admanager.google.com/",
"http://admob-creative.googleusercontent.com/",
"http://admobapplicationnetwork.com/",
"http://adometry.com/",
"http://adrollo.com/",
"http://mail-ads.google.com/",
"https://admobapplicationnetwork.com/",
"https://adometry.com/",
"https://adrollo.com/",
"https://mail-ads.google.com/",
"http://adgoogle.net/",
"https://adgoogle.net/",
"http://adservice.google.ac/",
"http://adservice.google.ad/",
"http://adservice.google.ae/",