diff options
| author | Yuchen Pei <id@ypei.org> | 2023-08-07 17:24:59 +1000 | 
|---|---|---|
| committer | Yuchen Pei <id@ypei.org> | 2023-08-07 17:24:59 +1000 | 
| commit | 5cffeed3ddd70c33677ad1d30269768bd48fe247 (patch) | |
| tree | 9f5ce414c435bc1da648fc72390374f30802c946 /firefox | |
| parent | d5cbfcdfab1226aadc92249676250d2173363445 (diff) | |
Adding policies.json for firefox.
Cross-profile settings that work for esr/developer/nightly.
Diffstat (limited to 'firefox')
| -rw-r--r-- | firefox/policies.json | 70 | 
1 files changed, 70 insertions, 0 deletions
| diff --git a/firefox/policies.json b/firefox/policies.json new file mode 100644 index 0000000..e180100 --- /dev/null +++ b/firefox/policies.json @@ -0,0 +1,70 @@ +{ +    "policies": { +        "Cookies": { +            "Behavior": "reject-tracker-and-partition-foreign", +            "ExpireAtSessionEnd": true, +            "Locked": false +        }, +        "DisableFirefoxStudies": true, +        "DisablePocket": true, +        "DisableTelemetry": true, +        "EnableTrackingProtection": { +            "Value": true, +            "Locked": true, +            "Cryptomining": true, +            "Fingerprinting": true +        }, +        "ExtensionSettings": { +            "jid1-KtlZuoiikVfFew@jetpack": { +                "installation_mode": "normal_installed", +                "install_url": "https://addons.mozilla.org/firefox/downloads/latest/librejs/latest.xpi" +            }, +            "uBlock0@raymondhill.net": { +                "installation_mode": "normal_installed", +                "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi" +            } +        }, +        "FirefoxHome": { +            "Search": true, +            "TopSites": false, +            "SponsoredTopSites": false, +            "Highlights": false, +            "Pocket": false, +            "SponsoredPocket": false, +            "Snippets": false, +            "Locked": false +        }, +        "Homepage": { +            "URL": "about:home", +            "Locked": false, +            "StartPage": "homepage" +        }, +        "OverrideFirstRunPage": "about:home", +        "Permissions": { +            "Location": { +                "BlockNewRequests": true, +            } +        }, +        "SearchEngines": { +            "Add": [ +                { +                    "Name": "Startpage", +                    "URLTemplate": "https://www.startpage.com/sp/search?query={searchTerms}", +                    "Method": "GET", +                    "IconURL": "https://www.startpage.com/sp/cdn/favicons/favicon--dark.ico", +                    "Alias": "@startpage", +                    "Description": "Startpage", +                    "SuggestURLTemplate": "https://www.startpage.com/sp/search?query={searchTerms}" +                } +            ], +            "Remove": [ +                "Amazon.com.au", +                "eBay", +                "Bing", +                "Google", +                "Twitter", +                "Yahoo" +            ] +        } +    } +} | 
