aboutsummaryrefslogtreecommitdiff
path: root/settings/distribution
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-07-04 04:38:49 -0500
committerBeatLink <beatlink@protonmail.com>2019-07-04 04:38:49 -0500
commit1d255bde58e5fe834f060cc642632b8b09e1da4b (patch)
tree270459f453b40bab6b766057acd1a657ee6db814 /settings/distribution
parentReorganize build script (diff)
downloadlibrewolf-linux-1d255bde58e5fe834f060cc642632b8b09e1da4b.tar.gz
librewolf-linux-1d255bde58e5fe834f060cc642632b8b09e1da4b.tar.bz2
librewolf-linux-1d255bde58e5fe834f060cc642632b8b09e1da4b.zip
Implement Policies update
Add search engines. Add templates for extension management and web blocking
Diffstat (limited to 'settings/distribution')
-rw-r--r--settings/distribution/policies.json103
1 files changed, 85 insertions, 18 deletions
diff --git a/settings/distribution/policies.json b/settings/distribution/policies.json
index e09bf93..078f1c0 100644
--- a/settings/distribution/policies.json
+++ b/settings/distribution/policies.json
@@ -1,23 +1,90 @@
{
- "policies": {
- "AppUpdateURL": "",
- "DisableAppUpdate": true,
- "OverridePostUpdatePage": "",
+ "policies": {
+ "AppUpdateURL": "",
+ "DisableAppUpdate": true,
+ "OverridePostUpdatePage": "",
+ "DisableSystemAddonUpdate": true,
+ "DisableFirefoxAccounts": true,
+ "DisableProfileImport": false,
+ "DisableMasterPasswordCreation": true,
+ "DisableFirefoxStudies": true,
+ "DisableTelemetry": true,
+ "DisableFeedbackCommands": true,
+ "DisablePocket": true,
+ "DisableSetDesktopBackground": false,
+ "DisableDeveloperTools": true,
- "DisableSystemAddonUpdate": true,
+ "WebsiteFilter": {
+ "Block": [""],
+ "Exceptions": [""]
+ },
- "DisableFirefoxAccounts": true,
- "DisableProfileImport": false,
- "DisableMasterPasswordCreation": true,
+ "Extensions": {
+ "Install": ["https://addons.mozilla.org/firefox/downloads/file/3027669/ublock_origin-1.20.0-an+fx.xpi"],
+ "Uninstall": [""],
+ "Locked": [""]
+ },
- "DisableFirefoxStudies": true,
- "DisableTelemetry": true,
- "DisableFeedbackCommands": true,
-
- "DisablePocket": true,
-
- "DisableSetDesktopBackground": false,
-
- "DisableDeveloperTools": true
- }
+ "SearchEngines": {
+ "PreventInstalls": false,
+ "Default": "DuckDuckGo",
+ "Remove": ["Google", "Bing", "Amazon.com", "eBay", "Twitter"],
+ "Add": [
+ {
+ "Name": "Searx",
+ "Alias": "",
+ "Description": "A privacy-respecting, hackable metasearch engine",
+ "URLTemplate": "https://www.searx.me/?q={searchTerms}",
+ "SuggestURLTemplate": "https://www.searx.me/?q={searchTerms}",
+ "IconURL": "https://www.searx.me/static/themes/oscar/img/favicon.png",
+ "Method": "GET"
+ },
+ {
+ "Name": "StartPage",
+ "Alias": "",
+ "Description": "The world's most private search engine",
+ "URLTemplate": "https://www.startpage.com/do/search?query={searchTerms}",
+ "SuggestURLTemplate": "https://www.startpage.com/do/search?query={searchTerms}",
+ "IconURL": "https://www.startpage.com/assets/images/logo-180x180.png",
+ "Method": "GET"
+ },
+ {
+ "Name": "Jive Search",
+ "Alias": "",
+ "Description": "A search engine that doesn't track you.",
+ "URLTemplate": "https://jivesearch.com/?q={searchTerms}",
+ "SuggestURLTemplate": "https://jivesearch.com/?q={searchTerms}",
+ "IconURL": "https://jivesearch.com/static/icons/favicon.ico",
+ "Method": "GET"
+ },
+ {
+ "Name": "Quant",
+ "Alias": "",
+ "Description": "The search engine that respects your privacy.",
+ "URLTemplate": "https://www.qwant.com/?q={searchTerms}",
+ "SuggestURLTemplate": "https://www.qwant.com/?q={searchTerms}",
+ "IconURL": "https://www.qwant.com/favicon-196.png",
+ "Method": "GET"
+ },
+ {
+ "Name": "MetaGer",
+ "Alias": "",
+ "Description": "MetaGer: Privacy Protected Search & Find",
+ "URLTemplate": "https://metager.org/meta/meta.ger3?eingabe={searchTerms}",
+ "SuggestURLTemplate": "https://metager.org/meta/meta.ger3?eingabe={searchTerms}",
+ "IconURL": "https://metager.org/favicon.ico",
+ "Method": "GET"
+ },
+ {
+ "Name": "Invidious",
+ "Alias": "",
+ "Description": "Invidious is an alternative front-end to YouTube",
+ "URLTemplate": "https://invidio.us/search?q={searchTerms}",
+ "SuggestURLTemplate": "https://invidio.us/search?q={searchTerms}",
+ "IconURL": "https://invidio.us/favicon-32x32.png",
+ "Method": "GET"
+ }
+ ]
+ }
+ }
}
bgstack15