Compare commits

...

3 Commits

7 changed files with 48 additions and 6 deletions

@ -1 +1 @@
Subproject commit 7f6e8395f9eb887658c2a48d35ea7c43036070b6
Subproject commit 552253ed7303472a4f23d70a908edec34ee1252a

@ -1 +1 @@
Subproject commit 30313e784f5225cf013fbd79dab098240e73b0dd
Subproject commit 015d029f6e23c6e6cfbc7440c247d2184ff79c99

@ -1 +1 @@
Subproject commit a0f022659e8567bcf39e5e201322d2c74a0012c8
Subproject commit 3b90394162c772768819fc2747ff576340d391d4

@ -1 +1 @@
Subproject commit c911895ab50b8299d37ea7ac0698df791cda6b8a
Subproject commit e8f1603362bf3741aed1b3d4cab58c39756d3665

@ -1 +1 @@
Subproject commit d3272e5f909c38477660fc3316f0ae0460fa04a0
Subproject commit c1be618011b03e21f27d8e4c05c72c45bad257ce

@ -1 +1 @@
Subproject commit 3eb921f21262382720355a5f05c2d3b69010e672
Subproject commit 7b80c2bbc23e44160339bafeecb7d5714a7e5993

View File

@ -11,6 +11,8 @@ 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 -->
@ -40,3 +42,43 @@ 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": {
"pfbmpcgfjncjakgfpddijlbdpjnhnfem": {
"installation_mode": "force_installed",
"override_update_url": true,
"toolbar_pin": "default_unpinned",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}
}
}
```
### [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"
}
}
}
```