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:
9 Policies are documented below.
12 This policy removes access to about:addons.
16 "BlockAboutAddons": true
20 This policy removes access to about:config.
24 "BlockAboutConfig": true
28 This policy removes access to about:support.
32 "BlockAboutSupport": true
35 ### BlockSetDesktopBackground
36 This policy removes the "Set As Desktop Background..." menuitem when right clicking on an image.
40 "BlockAboutSupport": true
44 ### CreateMasterPassword
45 This policy removes the master password functionality.
49 "CreateMasterPassword": false
54 This policy turns off application updates.
58 "DisableAppUpdate": true
62 ### DisableDeveloperTools
63 This policy removes access to all developer tools.
67 "DisableDeveloperTools": true
71 ### DisableDeveloperTools
72 This policy removes access to all developer tools.
76 "DisableDeveloperTools": true
80 ### DisableFirefoxScreenshots
81 This policy removes access to Firefox Screenshots
85 "DisableFirefoxScreenshots": true
89 ### DisableFirefoxAccounts
90 This policy disables Sync
94 "DisableFirefoxAccounts": true
98 ### DisableFirefoxStudies
99 This policy disables Firefox studies (Shield)
103 "DisableFirefoxAccounts": true
107 ### DisableFormHistory
108 This policy turns off the browser.formfill.enable preferences
112 "DisableFormHistory": true
117 This policy turns off Pocket
121 "DisablePocket": true
125 ### DisablePrivateBrowsing
126 This policy removes access to private browsing
130 "DisablePrivateBrowsing": true
134 ### DisplayBookmarksToolbar
135 This policy turns on the bookmarks toolbar by default. A user can still turn it off and it will stay off.
139 "DisplayBookmarksToolbar": true
144 This policy turns on the menubar by default. A user can still turn it off and it will stay off.
148 "DisplayMenuBar": true
152 ### DontCheckDefaultBrowser
153 This policy stops Firefox from checking if it is the default browser at startup.
157 "DontCheckDefaultBrowser": true
161 ### RememberPasswords
162 This policy sets the signon.rememberSignons preference. It can either be enabled or disabled.
166 "RememberPasswords": true
171 This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
176 "URL": "http://example.com/",
178 "Additional": ["http://example.org/",
179 "http://example.edu/"]
185 This policy sets domains for which popups are allowed
190 "Allow": ["http://example.org/",
191 "http://example.edu/"]
197 This policy sets domains that can install extensions
202 "Allow": ["http://example.org/",
203 "http://example.edu/"]
209 This policy sets domains that can set or not set cookies.
214 "Allow": ["http://example.org/"],
215 "Block": ["http://example.edu/"]
221 This policy sets domains that can use or not use Flash
226 "Allow": ["http://example.org/"],
227 "Block": ["http://example.edu/"]
233 This policy allows you to specify bookmarks. You can have any number of bookmarks although only ten are specified in the ADMX file.
234 Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
235 same folder name are grouped together.
242 "URL": "http://example.org",
243 "Favicon": "http://example.com/favicon.ico",
244 "Placement": "toolbar",
245 "Folder": "Bookmarks"