X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/028c7fe65fb2d555c4506372ce36cdabc1069538..c154b6d97a0d5c3ad1e06fbdd045e6c01aee0171:/README.md?ds=inline diff --git a/README.md b/README.md index 33d27f1..baf14b7 100644 --- a/README.md +++ b/README.md @@ -201,6 +201,15 @@ This policy removes access to private browsing } } ``` +### DisableProfileImport +This policy disables the"Import data from another browser" option in the bookmarks window. +``` +{ + "policies": { + "DisableProfileImport": true + } +} +``` ### DisableProfileRefresh This policy disables the Refresh Firefox button on about:support and support.mozilla.org. ``` @@ -241,7 +250,9 @@ This policy prevents system add-ons from being updated or installed. } ``` ### DisableTelemetry -This policy prevents the upload of telemetry data. Mozilla strongly recommends that you do NOT disable telemetry if you do not have a business need to do so. +This policy prevents the upload of telemetry data. + +Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours. ``` { "policies": { @@ -405,12 +416,13 @@ 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" - } + { + "Title": "Example", + "URL": "http://example.org", + "Favicon": "http://example.com/favicon.ico", + "Placement": ["toolbar", "menu"], + "Folder": "FolderName" + } ] } } @@ -454,3 +466,38 @@ This policy can be used to determine if the search bar is separate or combined w } } ``` +### WebsiteFilter +Blocks websites from being visited. The parameters take an array of Match Patterns, as documented in https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https accesses are supported at the moment. The arrays are limited to 1000 entries each. +``` +{ + "policies": { + "WebsiteFilter": { + "Block": [""], + "Exceptions": ["http://example.org/*"] + } + } +} +``` +### Search Engines +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. +``` +{ + "policies": { + "SearchEngines": { + "Add": [ + { + "Name": "", + "URLTemplate": "URL including {searchTerms} to substitute for the terms", + "Method": ["GET", "POST"], + "IconURL": "URL to icon", + "Alias": "Alias that can be used to access the engine", + "Description": "Description", + "SuggestURLTemplate": "URL for suggestions using {searchTerms}" + } + ], + "Default": "Name of engine", + "PreventInstalls": [true|false] + } + } +} +```