X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/7bdccd55292fa4a4d08210af733e2e67b341c976..384ac59d5b0e360e1e73fa03732f72b3e91c6d02:/README.md?ds=sidebyside diff --git a/README.md b/README.md index 2277853..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": { @@ -460,8 +471,10 @@ Blocks websites from being visited. The parameters take an array of Match Patter ``` { "policies": { - "Block": [""], - "Exceptions": ["http://example.org/*"] + "WebsiteFilter": { + "Block": [""], + "Exceptions": ["http://example.org/*"] + } } } ``` @@ -487,4 +500,4 @@ This policy allows you to add new search engines, as well as set the default and } } } -``` \ No newline at end of file +```