X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/b8b96f32bdd01bfe2de58c58d58a17fd968a2533..e28dab0ddd052653b2847a05e912aacf60bfc4f4:/README.md?ds=inline diff --git a/README.md b/README.md index 4dcd1e8..9e21e85 100644 --- a/README.md +++ b/README.md @@ -79,12 +79,12 @@ This policy removes the "Set As Desktop Background..." menuitem when right click } ``` ### Certificates -If this Windows only policy is set to true, Firefox reads certificates from the Windows certificate store. +If this policy is set to any value, Firefox reads certificates from the system certificate store. This is currently only supported on Windows, but will be available on macOS with Firefox 63. ``` { "policies": { "Certificates": { - "ImportEnterpriseRoots": [true|false] + "ImportEnterpriseRoots": true } } } @@ -324,12 +324,21 @@ For Uninstall and Locked, you specify extension IDs. { "policies": { "Extensions": { - "Install": ["https://addons.mozilla.org/firefox/downloads/somefile.xpi", "//path/to/xpi"] + "Install": ["https://addons.mozilla.org/firefox/downloads/somefile.xpi", "//path/to/xpi"], "Uninstall": ["addon_id@mozilla.org"], "Locked": ["addon_id@mozilla.org"] } } ``` +### HardwareAcceleration +This policy disables hardware acceleration by locking the preference layers.acceleration.disabled to true. +``` +{ + "policies": { + "HardwareAcceleration": false + } +} +``` ### NoDefaultBookmarks This policy prevents the default bookmarks or the Smart Bookmarks (Most Visited, Recent Tags) from being created. Note: this policy is only effective if used before the first run of the profile. ``` @@ -495,7 +504,7 @@ This policy blocks websites from being visited. The parameters take an array of } ``` ### Search Engines (This policy is only available on the ESR.) -This policy allows you to add new search engines, as well as set the default and prevent the install of search engines from web pages. Only Name and URLTemplate is required. +This policy allows you to add new search engines, remove or hide search engines, as well as set the default and prevent the install of search engines from web pages. Only Name and URLTemplate is required. ``` { "policies": { @@ -512,7 +521,42 @@ This policy allows you to add new search engines, as well as set the default and } ], "Default": "Name of engine", - "PreventInstalls": [true|false] + "PreventInstalls": [true|false], + "Remove": ["Twitter", "Wikipedia (en)"] + } + } +} +``` +### Permissions +This policy allows you to change the permissions associated with camera, microphone, location, and notifications +``` +{ + "policies": { + "Permissions": { + "Camera": { + "Allow": ["http://example.org/"], /* Origins where camera access is allowed by default */ + "Block": ["http://example.org/"], /* Origins where camera access is blocked by default */ + "BlockNewRequests": [true|false], /* Block new requests to access the camera */ + "Locked": [true|false] /* Don't allow the user to change the camera preferences */ + }, + "Microphone": { + "Allow": ["http://example.org/"], /* Origins where microphone access is allowed by default */ + "Block": ["http://example.org/"], /* Origins where microphone access is blocked by default */ + "BlockNewRequests": [true|false], /* Block new requests to access the microphone */ + "Locked": [true|false] /* Don't allow the user to change the microphone preferences */ + }, + "Location": { + "Allow": ["http://example.org/"], /* Origins where location access is allowed by default */ + "Block": ["http://example.org/"], /* Origins where location access is blocked by default */ + "BlockNewRequests": [true|false], /* Block new requests to access location */ + "Locked": [true|false] /* Don't allow the user to change the location preferences */ + }, + "Notifications": { + "Allow": ["http://example.org/"], /* Origins where sending notifications is allowed by default */ + "Block": ["http://example.org/"], /* Origins where sending notifications is blocked by default */ + "BlockNewRequests": [true|false], /* Block new requests to send notifications */ + "Locked": [true|false] /* Don't allow the user to change the notification preferences */ + } } } }