-If this policy is not configured, tracking protection is not enabled by default in the browser but it is enabled by default in private browsing and the user can change it.
-
-If Value is set to false, tracking protection is disabled and locked in both the browser and private browsing.
-
-If Value is set to true, private browsing is enabled by default in both the browser and private browsing and you can choose set the Locked value if you want to prevent the user from changing it.
-```
-{
- "policies": {
- "EnableTrackingProtection": {
- "Value": [true, false],
- "Locked": [true, false]
- }
-```
-### NoDefaultBookmarks
-Don't create the default bookmarks or the Smart Bookmarks (Most Visited, Recent Tags). Note: this policy is only effective if used before the first run of the profile.
-```
-{
- "policies": {
- "NoDefaultBookmarks": true
- }
-}
-```
-### RememberPasswords
-This policy sets the signon.rememberSignons preference. It can either be enabled or disabled.
-```
-{
- "policies": {
- "RememberPasswords": true
- }
-}
-```
-### Homepage
-This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
-```
-{
- "policies": {
- "Homepage": {
- "URL": "http://example.com/",
- "Locked": true,
- "Additional": ["http://example.org/",
- "http://example.edu/"]
- }
- }
-}
-```
-### Popups
-This policy sets domains for which popups are allowed
-```
-{
- "policies": {
- "Popups": {
- "Allow": ["http://example.org/",
- "http://example.edu/"]
- }
- }
-}
-```
-### InstallAddons
-This policy sets domains that can install extensions
-```
-{
- "policies": {
- "InstallAddons": {
- "Allow": ["http://example.org/",
- "http://example.edu/"]
- }
- }
-}
-```
-### Cookies
-This policy sets domains that can set or not set cookies.
-```
-{
- "policies": {
- "Cookies": {
- "Allow": ["http://example.org/"],
- "Block": ["http://example.edu/"]
- }
- }
-}
-```
-### FlashPlugin
-This policy sets domains that can use or not use Flash
-```
-{
- "policies": {
- "FlashPlugin": {
- "Allow": ["http://example.org/"],
- "Block": ["http://example.edu/"]
- }
- }
-}
-```
-### Bookmarks
-This policy allows you to specify bookmarks. You can have any number of bookmarks although only ten are specified in the ADMX file.
-Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
-same folder name are grouped together.
-
-```
-{
- "policies": {
- "Bookmarks": [
- {"Title": "Example",
- "URL": "http://example.org",
- "Favicon": "http://example.com/favicon.ico",
- "Placement": ["toolbar", "menu"],
- "Folder": "FolderName"
- }
- ]
- }
-}
-```
-### Proxy
-This policy allows you to specify proxy settings. These settings correspond to the connection settings in Firefox preferences.
-To specify ports, append them to the URLs with a colon (:). If Locked is set to true, the values can't be changed by the user.
-```
-{
- "Proxy": {
- "Mode": ["none", "system", "manual", "autoDetect", "autoConfig"]
- "Locked": [true, false]
-Z "HTTPProxy": "URL_TO_PROXY",
- "UseHTTPProxyForAllProtocols": [true, false]
- "SSLProxy": "URL_TO_PROXY",
- "FTPProxy": "URL_TO_PROXY",
- "SOCKSProxy": { "URL_TO_PROXY",
- "SOCKSVersion": [4, 5],
- "Passthrough": "List of passthrough addresses/domains",
- "AutoConfigURL": "URL_TO_AUTOCONFIG",
- "AutoLogin": [true, false],
- "UseProxyForDNS": [true, false]
- }
-}
-```