1 Policies can either be specified using the GPO templates or by putting a file called policies.json in the distribution directory.
2 The content of the JSON file should look like this:
10 Policies are documented below.
13 This policy removes access to about:addons.
17 "BlockAboutAddons": true
22 This policy removes access to about:config.
26 "BlockAboutConfig": true
31 This policy removes access to about:support.
35 "BlockAboutSupport": true
38 ### BlockSetDesktopBackground
39 This policy removes the "Set As Desktop Background..." menuitem when right clicking on an image.
43 "BlockAboutSupport": true
47 ### CreateMasterPassword
48 This policy removes the master password functionality.
52 "CreateMasterPassword": false
57 This policy turns off application updates.
61 "DisableAppUpdate": true
65 ### DisableDeveloperTools
66 This policy removes access to all developer tools.
70 "DisableDeveloperTools": true
74 ### DisableDeveloperTools
75 This policy removes access to all developer tools.
79 "DisableDeveloperTools": true
83 ### DisableFirefoxScreenshots
84 This policy removes access to Firefox Screenshots
88 "DisableFirefoxScreenshots": true
92 ### DisableFirefoxAccounts
93 This policy disables Sync
97 "DisableFirefoxAccounts": true
101 ### DisableFirefoxStudies
102 This policy disables Firefox studies (Shield)
106 "DisableFirefoxAccounts": true
110 ### DisableFormHistory
111 This policy turns off the browser.formfill.enable preferences
115 "DisableFormHistory": true
120 This policy turns off Pocket
124 "DisablePocket": true
128 ### DisablePrivateBrowsing
129 This policy removes access to private browsing
133 "DisablePrivateBrowsing": true
137 ### DisableSysAddonUpdate
138 This policy prevents system add-ons from being updated or installed.
142 "DisableSysAddonUpdate": true
146 ### DisplayBookmarksToolbar
147 This policy turns on the bookmarks toolbar by default. A user can still turn it off and it will stay off.
151 "DisplayBookmarksToolbar": true
156 This policy turns on the menubar by default. A user can still turn it off and it will stay off.
160 "DisplayMenuBar": true
164 ### DontCheckDefaultBrowser
165 This policy stops Firefox from checking if it is the default browser at startup.
169 "DontCheckDefaultBrowser": true
173 ### RememberPasswords
174 This policy sets the signon.rememberSignons preference. It can either be enabled or disabled.
178 "RememberPasswords": true
183 This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
188 "URL": "http://example.com/",
190 "Additional": ["http://example.org/",
191 "http://example.edu/"]
197 This policy sets domains for which popups are allowed
202 "Allow": ["http://example.org/",
203 "http://example.edu/"]
209 This policy sets domains that can install extensions
214 "Allow": ["http://example.org/",
215 "http://example.edu/"]
221 This policy sets domains that can set or not set cookies.
226 "Allow": ["http://example.org/"],
227 "Block": ["http://example.edu/"]
233 This policy sets domains that can use or not use Flash
238 "Allow": ["http://example.org/"],
239 "Block": ["http://example.edu/"]
245 This policy allows you to specify bookmarks. You can have any number of bookmarks although only ten are specified in the ADMX file.
246 Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
247 same folder name are grouped together.
254 "URL": "http://example.org",
255 "Favicon": "http://example.com/favicon.ico",
256 "Placement": "toolbar",
257 "Folder": "Bookmarks"