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 ### DisableBuiltinPDFViewer
66 This policy disables the built in PDF viewer. PDF files are downloaded and sent externally.
70 "DisableBuiltinPDFViewer": true
74 ### DisableDeveloperTools
75 This policy removes access to all developer tools.
79 "DisableDeveloperTools": true
83 ### DisableFeedbackCommands
84 This policy disables the menus for reporting sites (Submit Feedback, Report Deceptive Site)
88 "DisableFeedbackCommands": true
92 ### DisableFirefoxScreenshots
93 This policy removes access to Firefox Screenshots
97 "DisableFirefoxScreenshots": true
101 ### DisableFirefoxAccounts
102 This policy disables Sync
106 "DisableFirefoxAccounts": true
110 ### DisableFirefoxStudies
111 This policy disables Firefox studies (Shield)
115 "DisableFirefoxAccounts": true
119 ### DisableFormHistory
120 This policy turns off the browser.formfill.enable preferences
124 "DisableFormHistory": true
129 This policy turns off Pocket
133 "DisablePocket": true
137 ### DisablePrivateBrowsing
138 This policy removes access to private browsing
142 "DisablePrivateBrowsing": true
147 This policy disables safe mode on Windows only
151 "DisableSafeMode": true
155 ### DisableSysAddonUpdate
156 This policy prevents system add-ons from being updated or installed.
160 "DisableSysAddonUpdate": true
164 ### DisplayBookmarksToolbar
165 This policy turns on the bookmarks toolbar by default. A user can still turn it off and it will stay off.
169 "DisplayBookmarksToolbar": true
174 This policy turns on the menubar by default. A user can still turn it off and it will stay off.
178 "DisplayMenuBar": true
182 ### DontCheckDefaultBrowser
183 This policy stops Firefox from checking if it is the default browser at startup.
187 "DontCheckDefaultBrowser": true
191 ### RememberPasswords
192 This policy sets the signon.rememberSignons preference. It can either be enabled or disabled.
196 "RememberPasswords": true
201 This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
206 "URL": "http://example.com/",
208 "Additional": ["http://example.org/",
209 "http://example.edu/"]
215 This policy sets domains for which popups are allowed
220 "Allow": ["http://example.org/",
221 "http://example.edu/"]
227 This policy sets domains that can install extensions
232 "Allow": ["http://example.org/",
233 "http://example.edu/"]
239 This policy sets domains that can set or not set cookies.
244 "Allow": ["http://example.org/"],
245 "Block": ["http://example.edu/"]
251 This policy sets domains that can use or not use Flash
256 "Allow": ["http://example.org/"],
257 "Block": ["http://example.edu/"]
263 This policy allows you to specify bookmarks. You can have any number of bookmarks although only ten are specified in the ADMX file.
264 Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
265 same folder name are grouped together.
272 "URL": "http://example.org",
273 "Favicon": "http://example.com/favicon.ico",
274 "Placement": ["toolbar", "menu"],
275 "Folder": "FolderName"