X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/7e8d27667545b02d5074386a6450c52820b4631e..49a479f9b090053d7632055d9ac6fc7c03c22c92:/README.md diff --git a/README.md b/README.md index fc7813a..64a8602 100644 --- a/README.md +++ b/README.md @@ -369,8 +369,8 @@ This policy sets domains that can install extensions, as well as the default beh "policies": { "InstallAddonsPermission": { "Allow": ["http://example.org/", - "http://example.edu/"] - "Default": [true|false], /* If this is set to false, add-ons cannot be installed by the user */ + "http://example.edu/"], + "Default": [true|false] /* If this is set to false, add-ons cannot be installed by the user */ } } } @@ -432,19 +432,21 @@ This policy allows you to specify proxy settings. These settings correspond to t To specify ports, append them to the hostnames 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] - "HTTPProxy": "hostname", - "UseHTTPProxyForAllProtocols": [true, false] - "SSLProxy": "hostname", - "FTPProxy": "hostname", - "SOCKSProxy": "hostname", - "SOCKSVersion": [4, 5], - "Passthrough": "List of passthrough addresses/domains", - "AutoConfigURL": "URL_TO_AUTOCONFIG", - "AutoLogin": [true, false], - "UseProxyForDNS": [true, false] + "policies": { + "Proxy": { + "Mode": ["none", "system", "manual", "autoDetect", "autoConfig"], + "Locked": [true, false], + "HTTPProxy": "hostname", + "UseHTTPProxyForAllProtocols": [true, false], + "SSLProxy": "hostname", + "FTPProxy": "hostname", + "SOCKSProxy": "hostname", + "SOCKSVersion": [4, 5], + "Passthrough": "List of passthrough addresses/domains", + "AutoConfigURL": "URL_TO_AUTOCONFIG", + "AutoLogin": [true, false], + "UseProxyForDNS": [true, false] + } } } ``` @@ -471,8 +473,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/*"] + } } } ```