aboutsummaryrefslogtreecommitdiff
path: root/settings/distribution/policies.json
blob: 97b451842e889f99c2ab8a3e446156b52afd89f4 (plain)
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
{
    "__COMMENT__ More Information": "https://github.com/mozilla/policy-templates/blob/master/README.md",

    "policies": {
        "AppUpdateURL": "",

        "DisableAppUpdate": true,
        "OverridePostUpdatePage": "",
        "DisableSystemAddonUpdate": true,
        "DisableFirefoxAccounts": true,
        "DisableProfileImport": false,
        "DisableMasterPasswordCreation": true,
        "DisableFirefoxStudies": true,
        "DisableTelemetry": true,
        "DisableFeedbackCommands": true,
        "DisablePocket": true,
        "DisableSetDesktopBackground": false,
        "DisableDeveloperTools": false,
        "DNSOverHTTPS": {
          "Enabled": true,
          "ProviderURL": "9.9.9.9",
          "Locked": false
        },

        "Bookmarks": [
              {
                "Title": "Library",
                "URL": "chrome://browser/content/places/places.xul",
                "Placement": "menu",
                "Folder": "LibreWolf"
              },
              {
                "Title": "Restart LibreWolf",
                "URL": "about:restartrequired",
                "Placement": "menu",
                "Folder": "LibreWolf"
              },
              {
                "Title": "Advanced Preferences",
                "URL": "about:config",
                "Placement": "menu",
                "Folder": "LibreWolf"
              },
              {
                "Title": "All about pages",
                "URL": "about:about",
                "Placement": "menu",
                "Folder": "LibreWolf"
              },
              {
                "Title": "LibreWolf Profiles",
                "URL": "about:profiles",
                "Placement": "menu",
                "Folder": "LibreWolf"
              }
        ],

        "WebsiteFilter": {
            "Block": [""],
            "Exceptions": [""]
        },

        "Extensions": {
            "Install": ["https://addons.mozilla.org/firefox/downloads/file/3027669/ublock_origin-1.20.0-an+fx.xpi"],
            "Uninstall": [""],
            "Locked":  [""]
        },

        "SearchEngines": {
            "PreventInstalls": false,
            "Default": "DuckDuckGo",
            "Remove": ["Google", "Bing", "Amazon.com", "eBay", "Twitter"],
            "Add": [
                {
                    "Name": "Searx",
                    "Alias": "",
                    "Description": "A privacy-respecting, hackable metasearch engine",
                    "URLTemplate": "https://www.searx.me/?q={searchTerms}",
                    "SuggestURLTemplate": "https://www.searx.me/?q={searchTerms}",
                    "IconURL": "https://www.searx.me/static/themes/oscar/img/favicon.png",
                    "Method": "GET"
                },
                {
                    "Name": "StartPage",
                    "Alias": "",
                    "Description": "The world's most private search engine",
                    "URLTemplate": "https://www.startpage.com/do/search?query={searchTerms}",
                    "SuggestURLTemplate": "https://www.startpage.com/do/search?query={searchTerms}",
                    "IconURL": "https://www.startpage.com/assets/images/logo-180x180.png",
                    "Method": "GET"
                },
                {
                    "Name": "Jive Search",
                    "Alias": "",
                    "Description": "A search engine that doesn't track you.",
                    "URLTemplate": "https://jivesearch.com/?q={searchTerms}",
                    "SuggestURLTemplate": "https://jivesearch.com/?q={searchTerms}",
                    "IconURL": "https://jivesearch.com/static/icons/favicon.ico",
                    "Method": "GET"
                },
                {
                    "Name": "Quant",
                    "Alias": "",
                    "Description": "The search engine that respects your privacy.",
                    "URLTemplate": "https://www.qwant.com/?q={searchTerms}",
                    "SuggestURLTemplate": "https://www.qwant.com/?q={searchTerms}",
                    "IconURL": "https://www.qwant.com/favicon-196.png",
                    "Method": "GET"
                },
                {
                    "Name": "MetaGer",
                    "Alias": "",
                    "Description": "MetaGer: Privacy Protected Search & Find",
                    "URLTemplate": "https://metager.org/meta/meta.ger3?eingabe={searchTerms}",
                    "SuggestURLTemplate": "https://metager.org/meta/meta.ger3?eingabe={searchTerms}",
                    "IconURL": "https://metager.org/favicon.ico",
                    "Method": "GET"
                },
                {
                    "Name": "Invidious",
                    "Alias": "",
                    "Description": "Invidious is an alternative front-end to YouTube",
                    "URLTemplate": "https://invidio.us/search?q={searchTerms}",
                    "SuggestURLTemplate": "https://invidio.us/search?q={searchTerms}",
                    "IconURL": "https://invidio.us/favicon-32x32.png",
                    "Method": "GET"
                }
            ]
        }
    }
}
bgstack15