web-browsers/README.md: add DuckDuckGo Privacy Essentials as an abandoned idea

This commit is contained in:
Aminda Suomalainen 2024-03-23 12:47:03 +02:00
parent 891434ba51
commit 3933874ae0
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
1 changed files with 26 additions and 0 deletions

View File

@ -12,6 +12,7 @@ and symlinked in this directory for reference._
- [Abandoned ideas](#abandoned-ideas)
- [AdNauseam managed policy](#adnauseam-managed-policy)
- [Blank New Tab](#blank-new-tab)
- [DuckDuckGo Privacy Essentials](#duckduckgo-privacy-essentials)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
@ -44,6 +45,8 @@ This snipped is from Firefox, but the principle applies to Chromium.
### Blank New Tab
This is a Chromium extension and this was a Chromium policy due to Microsoft pushing itself a lot on the new tab page, which my search engine policies bypass.
```json
{
"ExtensionSettings": {
@ -56,3 +59,26 @@ This snipped is from Firefox, but the principle applies to Chromium.
}
}
```
### [DuckDuckGo Privacy Essentials](https://chrome.google.com/webstore/detail/bkdgflcldnnnapblkhphbgpggdiikppg)
Same as Blank New Page, this was to bypass Google being default, which didn't even work, and is unnecessary with the search engine policies.
```json
{
"ExtensionSettings": {
"bkdgflcldnnnapblkhphbgpggdiikppg": {
"installation_mode": "normal_installed",
"override_update_url": true,
"runtime_allowed_hosts": [
"*://*.duckduckgo.com",
"*://*.google.com",
"*://*.bing.com"
],
"runtime_blocked_hosts": ["<all_urls>"],
"toolbar_pin": "default_unpinned",
"update_url": "https://clients2.google.com/service/update2/crx"
}
}
}
```