mirror of
https://github.com/optim-enterprises-bv/secureblue.git
synced 2025-11-03 20:07:53 +00:00
docs: add additional chromium documentation and fix existing documentation
This commit is contained in:
31
config/files/usr/etc/chromium/chromium.conf.md
Normal file
31
config/files/usr/etc/chromium/chromium.conf.md
Normal file
@@ -0,0 +1,31 @@
|
||||
**Disables hyperlink auditing pings**
|
||||
|
||||
`--no-pings`
|
||||
|
||||
**Disables the disk cache**
|
||||
|
||||
`--disk-cache-dir=/dev/null`
|
||||
|
||||
**Enable partitioning features**
|
||||
|
||||
`SplitCacheByNetworkIsolationKey,SplitCodeCacheByNetworkIsolationKey,SplitHostCacheByNetworkIsolationKey,IsolateSandboxedIframes,StrictOriginIsolation,PartitionConnectionsByNetworkIsolationKey,PartitionHttpServerPropertiesByNetworkIsolationKey,PartitionSSLSessionsByNetworkIsolationKey,PartitionNelAndReportingByNetworkIsolationKey,EnableCrossSiteFlagNetworkIsolationKey`
|
||||
|
||||
**Harden prefetching**
|
||||
|
||||
`PrefetchPrivacyChanges`
|
||||
|
||||
**Disable Google's "privacy sandbox"**
|
||||
|
||||
`PrivacySandboxSettings4`
|
||||
|
||||
**Disable various content suggestions**
|
||||
|
||||
`InterestFeedV2,NTPPopularSitesBakedInContent,UsePopularSitesSuggestions`
|
||||
|
||||
**Disable DRM**
|
||||
|
||||
`MediaDrmPreprovisioning`
|
||||
|
||||
**Disable autofill requests**
|
||||
|
||||
`AutofillServerCommunication`
|
||||
@@ -2,157 +2,160 @@ A list of [Vanadium patches](https://github.com/GrapheneOS/Vanadium/blob/main/pa
|
||||
|
||||
| Vanadium patch | Patch description | Relevance | Counterpart |
|
||||
| ------------- | ------------- | ------------- | ------------- |
|
||||
| [0001-disable-checkout_nacl](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0001-disable-checkout_nacl.patch) | Disables checking out nacl | Yes | [nacl is completely disabled in upstream Fedora](https://src.fedoraproject.org/rpms/chromium/blob/f39/f/chromium.spec#_1291) |
|
||||
| [0002-use-64-bit-WebView-processes](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0002-use-64-bit-WebView-processes.patch) | Forbid use of 32-bit ABI in WebView | No, Android only | N/A |
|
||||
| [0003-switch-to-fstack-protector-strong](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0003-switch-to-fstack-protector-strong.patch) | Use -fstack-protector-strong cflag | Yes | [Set in upstream Fedora](https://src.fedoraproject.org/rpms/chromium/blob/f39/f/chromium-119-fstack-protector-strong.patch) |
|
||||
| [0004-enable-fwrapv-in-Clang-for-non-UBSan-builds](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0004-enable-fwrapv-in-Clang-for-non-UBSan-builds.patch) | Set -fwrapv to make signed integer overflow defined behavior to improve memory safety | Yes | [Set in upstream Fedora](https://src.fedoraproject.org/rpms/chromium/c/55c38ba66d02c7b2746e0f70d38f15ff81ef74f4?branch=f39) |
|
||||
| [0005-enable-ftrivial-auto-var-init-zero](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0005-enable-ftrivial-auto-var-init-zero.patch) | Set -ftrivial-auto-var-init=zero to force clang to initialize automatic variables with zeroes | Yes | [Set in upstream Fedora](https://src.fedoraproject.org/rpms/chromium/c/55c38ba66d02c7b2746e0f70d38f15ff81ef74f4?branch=f39) |
|
||||
| [0006-disable-broken-warning-for-auto-var-init](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0006-disable-broken-warning-for-auto-var-init.patch) | Minor fix related to the prior patch | No, not desired | N/A |
|
||||
| [0007-Vanadium-branding.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0007-Vanadium-branding.patch) | Apply branding changes specific to Vanadium | No, branding related | N/A |
|
||||
| [0008-Vanadium-branding-for-WebView.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0008-Vanadium-branding-for-WebView.patch) | Apply branding changes specific to Vanadium for the WebView | No, branding related | N/A |
|
||||
| [0009-Vanadium-string-rebranding.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0009-Vanadium-string-rebranding.patch) | Adjust strings to reflect Vanadium branding | No, branding related | N/A |
|
||||
| [0010-Support-for-extended-version-name-and-increments.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0010-Support-for-extended-version-name-and-increments.patch) | Add support for extended version names and increments | No, not desired | N/A |
|
||||
| [0011-disable-first-run-welcome-page.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0011-disable-first-run-welcome-page.patch) | Disable first-run welcome page | No, branding related | N/A |
|
||||
| [0012-disable-seed-based-field-trials.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0012-disable-seed-based-field-trials.patch) | Disable seed-based field trials (variations) | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L10) for everything except critical fixes |
|
||||
| [0013-disable-fetching-variations.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0013-disable-fetching-variations.patch) | Disable fetching variations | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L10) for everything except critical fixes |
|
||||
| [0014-disable-WebView-variations-support.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0014-disable-WebView-variations-support.patch) | Disable WebView variations support | No, Android only | N/A |
|
||||
| [0015-disable-navigation-error-correction-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0015-disable-navigation-error-correction-by-default.patch) | Disable navigation error correction by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L32) |
|
||||
| [0016-disable-contextual-search-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0016-disable-contextual-search-by-default.patch) | Disable contextual search by default | No, Android only | N/A |
|
||||
| [0017-disable-network-prediction-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0017-disable-network-prediction-by-default.patch) | Disable network prediction by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L16) |
|
||||
| [0018-disable-metrics-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0018-disable-metrics-by-default.patch) | Disable metrics by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L15) |
|
||||
| [0019-disable-hyperlink-auditing-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0019-disable-hyperlink-auditing-by-default.patch) | Disable hyperlink auditing by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0020-disable-showing-popular-sites-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0020-disable-showing-popular-sites-by-default.patch) | Disable showing popular sites by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0021-disable-article-suggestions-feature-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0021-disable-article-suggestions-feature-by-default.patch) | Disable article suggestions feature by default | Yes | MISSING |
|
||||
| [0022-disable-content-feed-suggestions-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0022-disable-content-feed-suggestions-by-default.patch) | Disable content feed suggestions by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0023-disable-sensors-access-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0023-disable-sensors-access-by-default.patch) | Disable sensors access by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L3) |
|
||||
| [0024-block-playing-protected-media-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0024-block-playing-protected-media-by-default.patch) | Block playing protected media by default | Yes | MISSING |
|
||||
| [0025-disable-third-party-cookies-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0025-disable-third-party-cookies-by-default.patch) | Disable third-party cookies by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L8) |
|
||||
| [0026-disable-background-sync-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0026-disable-background-sync-by-default.patch) | Disable background sync by default | No, not desired | N/A |
|
||||
| [0027-disable-payment-support-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0027-disable-payment-support-by-default.patch) | Disable payment support by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L17) |
|
||||
| [0028-disable-media-router-media-remoting-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0028-disable-media-router-media-remoting-by-default.patch) | Disable media router media remoting by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L4) |
|
||||
| [0029-disable-media-router-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0029-disable-media-router-by-default.patch) | Disable media router by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L4) |
|
||||
| [0030-disable-offering-translations-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0030-disable-offering-translations-by-default.patch) | Disable offering translations by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L26) |
|
||||
| [0031-disable-browser-sign-in-feature-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0031-disable-browser-sign-in-feature-by-default.patch) | Disable browser sign-in feature by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L32) |
|
||||
| [0032-disable-browser-autologin-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0032-disable-browser-autologin-by-default.patch) | Disable browser autologin feature by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L32) |
|
||||
| [0033-disable-safe-browsing-reporting-opt-in-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0033-disable-safe-browsing-reporting-opt-in-by-default.patch) | Disable safe browsing reporting opt-in by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L31) |
|
||||
| [0034-disable-unused-safe-browsing-option-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0034-disable-unused-safe-browsing-option-by-default.patch) | Disable safe browsing due to lack of Play Services | No, Android only | N/A |
|
||||
| [0035-disable-media-DRM-preprovisioning-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0035-disable-media-DRM-preprovisioning-by-default.patch) | Disables media DRM preprovisioning | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0036-disable-autofill-server-communication-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0036-disable-autofill-server-communication-by-default.patch) | Disables autofill server communication | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0037-disable-component-updater-pings-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0037-disable-component-updater-pings-by-default.patch) | Disables component updater pings | Yes | MISSING |
|
||||
| [0038-disable-search-provider-logo.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0038-disable-search-provider-logo.patch) | Disables search provider logo | No, branding related | N/A |
|
||||
| [0039-disable-trivial-subdomain-hiding.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0039-disable-trivial-subdomain-hiding.patch) | Disables trivial subdomain hiding | Yes | MISSING |
|
||||
| [0040-disable-learn-more-link-in-incognito-new-tab.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0040-disable-learn-more-link-in-incognito-new-tab.patch) | Disables learn more link in incognito new tab | No, branding related | N/A |
|
||||
| [0041-disable-Omaha-update-check-support.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0041-disable-Omaha-update-check-support.patch) | Disables Omaha update check support | No, not desired | N/A |
|
||||
| [0042-disable-GaiaAuthFetcher-code-due-to-upstream-bug.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0042-disable-GaiaAuthFetcher-code-due-to-upstream-bug.patch) | Disables GaiaAuthFetcher code due to upstream bug | No, not desired| N/A |
|
||||
| [0043-Disable-adding-a-signed-out-avatar-on-new-tab-pages-.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0043-Disable-adding-a-signed-out-avatar-on-new-tab-pages-.patch) | Disables adding a signed-out avatar on new tab pages | No, not desired | N/A |
|
||||
| [0044-Disable-newer-privacy-sandbox-features-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0044-Disable-newer-privacy-sandbox-features-by-default.patch) | Disables newer privacy sandbox features | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0045-Disable-WebGPU-in-Android-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0045-Disable-WebGPU-in-Android-by-default.patch) | Disables WebGPU in Android | No, Android only | N/A |
|
||||
| [0046-always-use-local-new-tab-page.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0046-always-use-local-new-tab-page.patch) | Always use local new tab page | No, not desired| N/A |
|
||||
| [0047-mark-non-secure-origins-as-dangerous.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0047-mark-non-secure-origins-as-dangerous.patch) | Marks non-secure origins as dangerous | Yes | MISSING |
|
||||
| [0048-most-private-WebRTC-IP-handling-policy-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0048-most-private-WebRTC-IP-handling-policy-by-default.patch) | Most private WebRTC IP handling policy by default | Yes | Set [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L29) |
|
||||
| [0049-stub-out-the-battery-status-API.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0049-stub-out-the-battery-status-API.patch) | Stubs out the battery status API | No, Android only | N/A |
|
||||
| [0050-stop-ignoring-download-location-prompt-setting.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0050-stop-ignoring-download-location-prompt-setting.patch) | Stops ignoring download location prompt setting | No, Android only | N/A |
|
||||
| [0051-show-download-prompt-again-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0051-show-download-prompt-again-by-default.patch) | Shows download prompt again by default | No, Android only | N/A |
|
||||
| [0052-disable-trials-of-privacy-aware-analytics-advertisin.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0052-disable-trials-of-privacy-aware-analytics-advertisin.patch) | Disables trials of privacy-aware analytics advertising | Yes | MISSING |
|
||||
| [0053-disable-using-Play-services-fonts.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0053-disable-using-Play-services-fonts.patch) | Disables using Play services fonts | No, Android only | N/A |
|
||||
| [0054-disable-appending-variations-header.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0054-disable-appending-variations-header.patch) | Disables appending variations header | No, not desired | N/A |
|
||||
| [0055-Disable-detailed-language-settings-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0055-Disable-detailed-language-settings-by-default.patch) | Disables detailed language settings by default | No, not desired | N/A |
|
||||
| [0056-disable-fetching-optimization-guides-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0056-disable-fetching-optimization-guides-by-default.patch) | Disables fetching optimization guides by default | No, not desired | N/A |
|
||||
| [0057-set-default-search-engine-to-DuckDuckGo.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0057-set-default-search-engine-to-DuckDuckGo.patch) | Sets default search engine to DuckDuckGo | No, not desired | N/A |
|
||||
| [0058-set-original-package-to-org.chromium.chrome.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0058-set-original-package-to-org.chromium.chrome.patch) | Sets original package to org.chromium.chrome | No, Android only | N/A |
|
||||
| [0059-Make-HTTPS-only-mode-the-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0059-Make-HTTPS-only-mode-the-default.patch) | Makes HTTPS-only mode the default | Yes | Set [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L13) |
|
||||
| [0060-require-HTTPS-for-component-updates.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0060-require-HTTPS-for-component-updates.patch) | Requires HTTPS for component updates | Yes | MISSING |
|
||||
| [0061-use-vanadium.app-for-component-updates.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0061-use-vanadium.app-for-component-updates.patch) | Use vanadium.app for component updates | No, not desired | N/A |
|
||||
| [0062-use-grapheneos.network-when-verifying-DNS-over-HTTPS.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0062-use-grapheneos.network-when-verifying-DNS-over-HTTPS.patch) | Use grapheneos.network when verifying DNS over HTTPS | No, not desired | N/A |
|
||||
| [0063-Use-GrapheneOS-connectivity-check-as-well-for-Help-a.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0063-Use-GrapheneOS-connectivity-check-as-well-for-Help-a.patch) | Use GrapheneOS connectivity check as well for Help | No, not desired | N/A |
|
||||
| [0064-enable-memory-tagging-in-all-processes.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0064-enable-memory-tagging-in-all-processes.patch) | Enable memory tagging in all processes | No, Android only | N/A |
|
||||
| [0065-bugfix-do-not-attempt-to-re-enable-memory-tagging.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0065-bugfix-do-not-attempt-to-re-enable-memory-tagging.patch) | Bugfix: do not attempt to re-enable memory tagging | No, Android only | N/A |
|
||||
| [0066-enable-prefetch-privacy-changes-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0066-enable-prefetch-privacy-changes-by-default.patch) | Enable prefetch privacy changes by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0067-enable-split-cache-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0067-enable-split-cache-by-default.patch) | Enable split cache by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0068-enable-partitioning-connections-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0068-enable-partitioning-connections-by-default.patch) | Enable partitioning connections by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0069-enable-dubious-Do-Not-Track-feature-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0069-enable-dubious-Do-Not-Track-feature-by-default.patch) | Enable dubious Do Not Track feature by default | No, not desired | N/A |
|
||||
| [0070-enable-strict-site-isolation-by-default-on-Android.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0070-enable-strict-site-isolation-by-default-on-Android.patch) | Enable strict site isolation by default on Android | No, Android only | N/A |
|
||||
| [0071-Enable-strict-origin-isolation-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0071-Enable-strict-origin-isolation-by-default.patch) | Enable strict origin isolation by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0072-Enable-reduce-accept-language-header-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0072-Enable-reduce-accept-language-header-by-default.patch) | Enable reduce accept language header by default | No, fingerprinting related | N/A |
|
||||
| [0073-enable-process-isolated-sandboxed-iframes-by-default.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0073-enable-process-isolated-sandboxed-iframes-by-default.patch) | Enable process isolated sandboxed iframes by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0074-use-Google-Chrome-branding-for-client-hints.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0074-use-Google-Chrome-branding-for-client-hints.patch) | Use Google Chrome branding for client hints | No, fingerprinting related | N/A |
|
||||
| [0075-add-trichrome-browser-apk-targets.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0075-add-trichrome-browser-apk-targets.patch) | Add trichrome browser APK targets | No, Android only | N/A |
|
||||
| [0076-Remove-logo-from-chrome-version.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0076-Remove-logo-from-chrome-version.patch) | Remove logo from Chrome version | No, Android only | N/A |
|
||||
| [0077-redirect-settings-help-icon.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0077-redirect-settings-help-icon.patch) | Redirect settings help icon | No, branding related | N/A |
|
||||
| [0078-remove-Google-prefix-from-storage-settings-label.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0078-remove-Google-prefix-from-storage-settings-label.patch) | Remove Google prefix from storage settings label | No, branding related | N/A |
|
||||
| [0079-remove-Help-feedback-menu-entry.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0079-remove-Help-feedback-menu-entry.patch) | Remove Help feedback menu entry | No, Android only | N/A |
|
||||
| [0080-hide-passwords.google.com-link-when-not-supported.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0080-hide-passwords.google.com-link-when-not-supported.patch) | Hide passwords.google.com link when not supported | No, Android only | N/A |
|
||||
| [0081-update-trichrome_library_apk-expectation-file.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0081-update-trichrome_library_apk-expectation-file.patch) | Update trichrome_library_apk expectation file | No, Android only | N/A |
|
||||
| [0082-Consolidate-downstream-changes-in-dependencies-sourc.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0082-Consolidate-downstream-changes-in-dependencies-sourc.patch) | Consolidate downstream changes in dependencies source | No, Android only | N/A |
|
||||
| [0083-Consolidate-downstream-strings-in-a-separate-file-fo.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0083-Consolidate-downstream-strings-in-a-separate-file-fo.patch) | Consolidate downstream strings in a separate file | No, branding related | N/A |
|
||||
| [0084-Utility-class-for-adding-shared-preference-keys.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0084-Utility-class-for-adding-shared-preference-keys.patch) | Utility class for adding shared preference keys | No, Android only | N/A |
|
||||
| [0085-Helper-class-for-modifying-preferences-at-chrome-lay.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0085-Helper-class-for-modifying-preferences-at-chrome-lay.patch) | Helper class for modifying preferences at Chrome layer | No, Android only | N/A |
|
||||
| [0086-Utility-class-for-modifying-preferences-at-Privacy-s.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0086-Utility-class-for-modifying-preferences-at-Privacy-s.patch) | Utility class for modifying preferences at Privacy settings layer | No, Android only | N/A |
|
||||
| [0087-Remove-not-applicable-additional-terms-of-services.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0087-Remove-not-applicable-additional-terms-of-services.patch) | Remove not applicable additional terms of services | No, branding related | N/A |
|
||||
| [0088-remove-Google-terms-of-use-and-privacy-policy.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0088-remove-Google-terms-of-use-and-privacy-policy.patch) | Remove Google terms of use and privacy policy | No, branding related | N/A |
|
||||
| [0089-disable-unused-password-check-feature.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0089-disable-unused-password-check-feature.patch) | Disable unused password check feature | No, Android only | N/A |
|
||||
| [0090-remove-unwanted-sync-and-services-link.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0090-remove-unwanted-sync-and-services-link.patch) | Remove unwanted sync and services link | No, branding related | N/A |
|
||||
| [0091-remove-safety-check-menu.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0091-remove-safety-check-menu.patch) | Remove safety check menu | No, not desired | N/A |
|
||||
| [0092-remove-unwanted-account-and-services-section.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0092-remove-unwanted-account-and-services-section.patch) | Remove unwanted account and services section | No, not desired | N/A |
|
||||
| [0093-remove-translate-offer-preference.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0093-remove-translate-offer-preference.patch) | Remove translate offer preference | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L26) |
|
||||
| [0094-Hide-Sign-In-preference-when-disallowed.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0094-Hide-Sign-In-preference-when-disallowed.patch) | Hide Sign-In preference when disallowed | No, not desired | N/A |
|
||||
| [0095-Hide-currently-no-op-preload-settings.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0095-Hide-currently-no-op-preload-settings.patch) | Hide currently no-op preload settings | No, not desired | N/A |
|
||||
| [0096-Remove-privacy-trials-preference-UI.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0096-Remove-privacy-trials-preference-UI.patch) | Remove privacy trials preference UI | No, not desired | N/A |
|
||||
| [0097-Remove-privacy-guides-preference-UI.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0097-Remove-privacy-guides-preference-UI.patch) | Remove privacy guides preference UI | No, not desired | N/A |
|
||||
| [0098-Move-search-suggestions-back-to-privacy-section.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0098-Move-search-suggestions-back-to-privacy-section.patch) | Move search suggestions back to privacy section | No, not desired | N/A |
|
||||
| [0099-Toggle-for-closing-tabs-on-exit.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0099-Toggle-for-closing-tabs-on-exit.patch) | Toggle for closing tabs on exit | No, not desired | N/A |
|
||||
| [0100-Toggle-for-navigating-external-URL-in-incognito.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0100-Toggle-for-navigating-external-URL-in-incognito.patch) | Toggle for navigating external URL in incognito | No, not desired | N/A |
|
||||
| [0101-Implement-UI-for-JIT-site-settings.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0101-Implement-UI-for-JIT-site-settings.patch) | Implement UI for JIT site settings | Yes | JIT is globally disabled [in secureblue config](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json.readme.md) |
|
||||
| [0102-Implement-UI-for-WebRTC-toggle.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0102-Implement-UI-for-WebRTC-toggle.patch) | Implement UI for WebRTC toggle | No, not desired | N/A |
|
||||
| [0103-Do-not-clear-the-url-bar-on-focus-by-default-for-sea.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0103-Do-not-clear-the-url-bar-on-focus-by-default-for-sea.patch) | Do not clear the URL bar on focus by default for search | No, Android only | N/A |
|
||||
| [0104-Handle-web-search-action-in-browser.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0104-Handle-web-search-action-in-browser.patch) | Handle web search action in browser | No, Android only | N/A |
|
||||
| [0105-Support-opening-external-web-search-in-incognito.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0105-Support-opening-external-web-search-in-incognito.patch) | Support opening external web search in incognito | No, Android only | N/A |
|
||||
| [0106-Add-missing-null-check-for-password-manager-autofill.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0106-Add-missing-null-check-for-password-manager-autofill.patch) | Add missing null check for password manager autofill | No, not desired | N/A |
|
||||
| [0107-make-cross-origin-referrer-behavior-configurable.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0107-make-cross-origin-referrer-behavior-configurable.patch) | Make cross-origin referrer behavior configurable | No, not desired | N/A |
|
||||
| [0108-temporary-Workaround-for-crashes-at-StackTrace-calls.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0108-temporary-Workaround-for-crashes-at-StackTrace-calls.patch) | Temporary workaround for crashes at StackTrace calls | No, not desired | N/A |
|
||||
| [0109-Derive-high-entropy-client-hints-with-reduced-user-a.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0109-Derive-high-entropy-client-hints-with-reduced-user-a.patch) | Derive high entropy client hints with reduced user agent | No, fingerprinting related | N/A |
|
||||
| [0110-temporary-Disable-changes-to-high-entropy-client-hin.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0110-temporary-Disable-changes-to-high-entropy-client-hin.patch) | Temporary disable changes to high entropy client hints | No, fingerprinting related | N/A |
|
||||
| [0111-Drop-workaround-with-android-autofill-in-compatibili.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0111-Drop-workaround-with-android-autofill-in-compatibili.patch) | Drop workaround with Android autofill in compatibility | No, Android only | N/A |
|
||||
| [0112-Enable-android-autofill-on-http-authentication-dialo.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0112-Enable-android-autofill-on-http-authentication-dialo.patch) | Enable Android autofill on HTTP authentication dialog | No, Android only | N/A |
|
||||
| [0113-Support-both-password-manager-and-android-autofill-f.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0113-Support-both-password-manager-and-android-autofill-f.patch) | Support both password manager and Android autofill | No, Android only | N/A |
|
||||
| [0114-Support-for-both-browser-and-android-autofill-functi.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0114-Support-for-both-browser-and-android-autofill-functi.patch) | Support for both browser and Android autofill functionalities | No, Android only | N/A |
|
||||
| [0115-Support-native-Android-autofill-at-browser.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0115-Support-native-Android-autofill-at-browser.patch) | Support native Android autofill at browser | No, Android only | N/A |
|
||||
| [0116-Disable-Play-services-dependent-password-manager-pre.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0116-Disable-Play-services-dependent-password-manager-pre.patch) | Disable Play services dependent password manager | No, Android only | N/A |
|
||||
| [0117-Use-local-list-of-supported-languages-for-Language-s.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0117-Use-local-list-of-supported-languages-for-Language-s.patch) | Use local list of supported languages for Language settings | Yes | MISSING |
|
||||
| [0118-Checkout-PGO-profiles.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0118-Checkout-PGO-profiles.patch) | Checkout PGO profiles | No, not desired | N/A |
|
||||
| [0119-Extend-opening-links-from-external-apps-in-incognito.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0119-Extend-opening-links-from-external-apps-in-incognito.patch) | Extend opening links from external apps in incognito for custom tabs | No, Android only | N/A |
|
||||
| [0120-Extend-opening-links-from-external-apps-in-incognito.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0120-Extend-opening-links-from-external-apps-in-incognito.patch) | Extend opening links from external apps incognito for search tabs | No, Android only | N/A |
|
||||
| [0121-Extend-opening-links-from-external-apps-in-incognito.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0121-Extend-opening-links-from-external-apps-in-incognito.patch) | Extend opening links from external apps in incognito for share intents | No, Android only | N/A |
|
||||
| [0122-temporary-Always-partition-third-party-storage.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0122-temporary-Always-partition-third-party-storage.patch) | Temporary always partition third-party storage | Yes | MISSING |
|
||||
| [0123-Do-not-select-search-query-text-when-opening-web-and.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0123-Do-not-select-search-query-text-when-opening-web-and.patch) | Do not select search query text when opening web and | No, Android only | N/A |
|
||||
| [0124-Add-an-easily-extensible-way-to-reference-targets-ea.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0124-Add-an-easily-extensible-way-to-reference-targets-ea.patch) | Add an easily extensible way to reference targets easily in ninja | No, not desired | N/A |
|
||||
| [0125-Add-a-new-config-like-apk-target-for-building.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0125-Add-a-new-config-like-apk-target-for-building.patch) | Add a new config-like apk target for building | No, Android only | N/A |
|
||||
| [0126-config-Directly-reference-config-apk-build-target.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0126-config-Directly-reference-config-apk-build-target.patch) | Directly reference config apk build target | No, Android only | N/A |
|
||||
| [0127-config-Generate-ConfigInfo-from-config-apk.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0127-config-Generate-ConfigInfo-from-config-apk.patch) | Generate ConfigInfo from config apk | No, Android only | N/A |
|
||||
| [0128-config-Provide-targets-for-linking-and-inclusion-of-.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0128-config-Provide-targets-for-linking-and-inclusion-of-.patch) | Provide targets for linking and inclusion of ConfigInfo in apk | No, Android only | N/A |
|
||||
| [0129-config-Include-the-ConfigInfo-class-for-Monochrome-a.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0129-config-Include-the-ConfigInfo-class-for-Monochrome-a.patch) | Include the ConfigInfo class for Monochrome and Trichrome targets | No, Android only | N/A |
|
||||
| [0130-config-Include-the-ConfigInfo-class-for-WebView-targ.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0130-config-Include-the-ConfigInfo-class-for-WebView-targ.patch) | Include the ConfigInfo class for WebView targets with java code | No, Android only | N/A |
|
||||
| [0131-config-test-Add-ConfigInfo-on-necessary-integration-.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0131-config-test-Add-ConfigInfo-on-necessary-integration-.patch) | Add ConfigInfo on necessary integration test targets | No, Android only | N/A |
|
||||
| [0132-config-Add-proto-definitions-for-feature-flags-and-o.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0132-config-Add-proto-definitions-for-feature-flags-and-o.patch) | Add proto definitions for feature flags and out-of-band component shipping | No, Android only | N/A |
|
||||
| [0133-config-Add-protobuf-generator-parser-for-config-apk-.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0133-config-Add-protobuf-generator-parser-for-config-apk-.patch) | Add protobuf generator, parser for config apk contents | No, Android only | N/A |
|
||||
| [0134-config-Initial-configuration-for-config-apk.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0134-config-Initial-configuration-for-config-apk.patch) | Initial configuration for config apk | No, Android only | N/A |
|
||||
| [0135-config-Add-config-parser-for-browser-and-webview.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0135-config-Add-config-parser-for-browser-and-webview.patch) | Add config parser for browser and WebView | No, Android only | N/A |
|
||||
| [0136-config-Helper-script-for-fetching-content-filtering-.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0136-config-Helper-script-for-fetching-content-filtering-.patch) | Helper script for fetching content filtering... | No, Android only | N/A |
|
||||
| [0137-config-add-new-needed-deps-to-fetch-filter-lists.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0137-config-add-new-needed-deps-to-fetch-filter-lists.patch) | Add new needed dependencies to fetch filter lists | No, Android only | N/A |
|
||||
| [0138-config-Build-target-for-android-assets-including-the.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0138-config-Build-target-for-android-assets-including-the.patch) | Build target for android assets including the content filtering file | No, Android only | N/A |
|
||||
| [0139-config-Build-target-for-android-assets-for-config-fi.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0139-config-Build-target-for-android-assets-for-config-fi.patch) | Build target for android assets for config file protobuf | No, Android only | N/A |
|
||||
| [0140-config-Add-the-needed-component-and-protobuf-file-fo.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0140-config-Add-the-needed-component-and-protobuf-file-fo.patch) | Add the needed component and protobuf file for parsing | No, Android only | N/A |
|
||||
| [0141-Extension-of-build-system-for-java-files-in-base-lay.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0141-Extension-of-build-system-for-java-files-in-base-lay.patch) | Extension of build system for java files in base layer | No, Android only | N/A |
|
||||
| [0142-Add-hooks-for-LibraryLoader-on-early-initialization-.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0142-Add-hooks-for-LibraryLoader-on-early-initialization-.patch) | Add hooks for LibraryLoader on early initialization and command line switches | No, Android only | N/A |
|
||||
| [0143-Add-hooks-for-initializing-contents-of-VanadiumConfi.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0143-Add-hooks-for-initializing-contents-of-VanadiumConfi.patch) | Add hooks for initializing contents of VanadiumConfig app | No, Android only | N/A |
|
||||
| [0144-Extension-of-build-system-at-android-specific-subres.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0144-Extension-of-build-system-at-android-specific-subres.patch) | Extension of build system at android-specific subresource filter sources | No, Android only | N/A |
|
||||
| [0145-Expose-fetching-config-state-for-content-filtering-t.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0145-Expose-fetching-config-state-for-content-filtering-t.patch) | Expose fetching config state for content filtering to native calls | No, Android only | N/A |
|
||||
| [0146-Use-ruleset-from-config-apk-whenever-it-s-present.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0146-Use-ruleset-from-config-apk-whenever-it-s-present.patch) | Use ruleset from config apk whenever it's present | No, Android only | N/A |
|
||||
| [0147-Add-update-handling-of-subresource-filter-component-.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0147-Add-update-handling-of-subresource-filter-component-.patch) | Add update handling of subresource filter component from config apk | No, Android only | N/A |
|
||||
| [0148-Extension-of-build-system-for-static-library-deps-at.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0148-Extension-of-build-system-for-static-library-deps-at.patch) | Extension of build system for static library deps at browser layer | No, Android only | N/A |
|
||||
| [0149-Update-subresource-filter-from-config-apk.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0149-Update-subresource-filter-from-config-apk.patch) | Update subresource filter from config apk | No, Android only | N/A |
|
||||
| [0150-Use-the-content-filtering-from-config-app-when-avail.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0150-Use-the-content-filtering-from-config-app-when-avail.patch) | Use the content filtering from config app when available | No, Android only | N/A |
|
||||
| [0151-subresource-filter-rules-version-on-about-Vanadium-s.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0151-subresource-filter-rules-version-on-about-Vanadium-s.patch) | subresource filter rules version on about Vanadium settings page | No, Android only | N/A |
|
||||
| [0152-don-t-show-subresource-filter-UI-for-site.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0152-don-t-show-subresource-filter-UI-for-site.patch) | Don't show subresource filter UI for site | No, Android only | N/A |
|
||||
| [0153-enable-subresource-filter-on-all-sites.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0153-enable-subresource-filter-on-all-sites.patch) | Enable subresource filter on all sites | No, Android only | N/A |
|
||||
| [0154-Use-the-old-naming-convention-of-Ads-in-ads-site-set.patch](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0154-Use-the-old-naming-convention-of-Ads-in-ads-site-set.patch) | Use the old naming convention of Ads in ads site settings | No, Android only | N/A |
|
||||
| [0001-Vanadium-string-rebranding](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0001-Vanadium-string-rebranding.patch) | Adjust strings to reflect Vanadium branding | No, branding related | N/A |
|
||||
| [0002-Vanadium-branding](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0002-Vanadium-branding.patch) | Apply branding changes specific to Vanadium | No, branding related | N/A |
|
||||
| [0003-Vanadium-branding-for-WebView](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0003-Vanadium-branding-for-WebView.patch) | Apply branding changes specific to Vanadium for the WebView | No, branding related | N/A |
|
||||
| [0004-disable-checkout_nacl](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0004-disable-checkout_nacl.patch) | Disables checking out nacl | Yes | [nacl is completely disabled in upstream Fedora](https://src.fedoraproject.org/rpms/chromium/blob/f39/f/chromium.spec#_1291) |
|
||||
| [0005-use-64-bit-WebView-processes](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0005-use-64-bit-WebView-processes.patch) | Forbid use of 32-bit ABI in WebView | No, Android only | N/A |
|
||||
| [0006-switch-to-fstack-protector-strong](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0006-switch-to-fstack-protector-strong.patch) | Use -fstack-protector-strong cflag | Yes | [Set in upstream Fedora](https://src.fedoraproject.org/rpms/chromium/blob/f39/f/chromium-119-fstack-protector-strong.patch) |
|
||||
| [0007-enable-fwrapv-in-Clang-for-non-UBSan-builds](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0007-enable-fwrapv-in-Clang-for-non-UBSan-builds.patch) | Set -fwrapv to make signed integer overflow defined behavior to improve memory safety | Yes | [Set in upstream Fedora](https://src.fedoraproject.org/rpms/chromium/c/55c38ba66d02c7b2746e0f70d38f15ff81ef74f4?branch=f39) |
|
||||
| [0008-enable-ftrivial-auto-var-init-zero](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0008-enable-ftrivial-auto-var-init-zero.patch) | Set -ftrivial-auto-var-init=zero to force clang to initialize automatic variables with zeroes | Yes | [Set in upstream Fedora](https://src.fedoraproject.org/rpms/chromium/c/55c38ba66d02c7b2746e0f70d38f15ff81ef74f4?branch=f39) |
|
||||
| [0009-disable-broken-warning-for-auto-var-init](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0009-disable-broken-warning-for-auto-var-init.patch) | Minor fix related to the prior patch | No, not desired | N/A |
|
||||
| [0010-Checkout-PGO-profiles](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0010-Checkout-PGO-profiles.patch) | Checkout PGO profiles | No, not desired | N/A |
|
||||
| [0011-temporary-Workaround-for-crashes-at-StackTrace-calls](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0011-temporary-Workaround-for-crashes-at-StackTrace-calls.patch) | Temporary workaround for crashes at StackTrace calls | No, not desired | N/A |
|
||||
| [0012-Support-for-extended-version-name-and-increments](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0012-Support-for-extended-version-name-and-increments.patch) | Add support for extended version names and increments | No, not desired | N/A |
|
||||
| [0013-disable-first-run-welcome-page](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0013-disable-first-run-welcome-page.patch) | Disable first-run welcome page | No, branding related | N/A |
|
||||
| [0014-disable-seed-based-field-trials](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0014-disable-seed-based-field-trials.patch) | Disable seed-based field trials (variations) | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L10) for everything except critical fixes |
|
||||
| [0015-disable-fetching-variations](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0015-disable-fetching-variations.patch) | Disable fetching variations | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L10) for everything except critical fixes |
|
||||
| [0016-disable-WebView-variations-support](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0016-disable-WebView-variations-support.patch) | Disable WebView variations support | No, Android only | N/A |
|
||||
| [0017-disable-navigation-error-correction-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0017-disable-navigation-error-correction-by-default.patch) | Disable navigation error correction by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L32) |
|
||||
| [0018-disable-contextual-search-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0018-disable-contextual-search-by-default.patch) | Disable contextual search by default | No, Android only | N/A |
|
||||
| [0019-disable-network-prediction-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0019-disable-network-prediction-by-default.patch) | Disable network prediction by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L16) |
|
||||
| [0020-disable-metrics-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0020-disable-metrics-by-default.patch) | Disable metrics by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L15) |
|
||||
| [0021-disable-hyperlink-auditing-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0031-disable-hyperlink-auditing-by-default.patch) | Disable hyperlink auditing by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0022-disable-showing-popular-sites-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0022-disable-showing-popular-sites-by-default.patch) | Disable showing popular sites by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0023-disable-article-suggestions-feature-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0023-disable-article-suggestions-feature-by-default.patch) | Disable article suggestions feature by default | Yes | MISSING |
|
||||
| [0024-disable-content-feed-suggestions-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0024-disable-content-feed-suggestions-by-default.patch) | Disable content feed suggestions by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0025-disable-sensors-access-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0025-disable-sensors-access-by-default.patch) | Disable sensors access by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L3) |
|
||||
| [0026-block-playing-protected-media-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0026-block-playing-protected-media-by-default.patch) | Block playing protected media by default | Yes | MISSING |
|
||||
| [0027-disable-third-party-cookies-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0027-disable-third-party-cookies-by-default.patch) | Disable third-party cookies by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L8) |
|
||||
| [0028-disable-background-sync-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0028-disable-background-sync-by-default.patch) | Disable background sync by default | No, not desired | N/A |
|
||||
| [0029-disable-payment-support-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0029-disable-payment-support-by-default.patch) | Disable payment support by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L17) |
|
||||
| [0030-disable-media-router-media-remoting-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0030-disable-media-router-media-remoting-by-default.patch) | Disable media router media remoting by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L4) |
|
||||
| [0031-disable-media-router-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0031-disable-media-router-by-default.patch) | Disable media router by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L4) |
|
||||
| [0032-disable-offering-translations-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0032-disable-offering-translations-by-default.patch) | Disable offering translations by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L26) |
|
||||
| [0033-disable-browser-sign-in-feature-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0033-disable-browser-sign-in-feature-by-default.patch) | Disable browser sign-in feature by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L32) |
|
||||
| [0034-disable-browser-autologin-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0034-disable-browser-autologin-by-default.patch) | Disable browser autologin feature by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L32) |
|
||||
| [0035-disable-safe-browsing-reporting-opt-in-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0035-disable-safe-browsing-reporting-opt-in-by-default.patch) | Disable safe browsing reporting opt-in by default | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L31) |
|
||||
| [0036-disable-unused-safe-browsing-option-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0036-disable-unused-safe-browsing-option-by-default.patch) | Disable safe browsing due to lack of Play Services | No, Android only | N/A |
|
||||
| [0037-disable-media-DRM-preprovisioning-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0037-disable-media-DRM-preprovisioning-by-default.patch) | Disables media DRM preprovisioning | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0038-disable-autofill-server-communication-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0038-disable-autofill-server-communication-by-default.patch) | Disables autofill server communication | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0039-disable-component-updater-pings-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0039-disable-component-updater-pings-by-default.patch) | Disables component updater pings | Yes | MISSING |
|
||||
| [0040-disable-search-provider-logo](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0040-disable-search-provider-logo.patch) | Disables search provider logo | No, branding related | N/A |
|
||||
| [0041-disable-trivial-subdomain-hiding](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0041-disable-trivial-subdomain-hiding.patch) | Disables trivial subdomain hiding | Yes | MISSING |
|
||||
| [0042-disable-learn-more-link-in-incognito-new-tab](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0042-disable-learn-more-link-in-incognito-new-tab.patch) | Disables learn more link in incognito new tab | No, branding related | N/A |
|
||||
| [0043-disable-Omaha-update-check-support](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0043-disable-Omaha-update-check-support.patch) | Disables Omaha update check support | No, not desired | N/A |
|
||||
| [0044-disable-GaiaAuthFetcher-code-due-to-upstream-bug](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0044-disable-GaiaAuthFetcher-code-due-to-upstream-bug.patch) | Disables GaiaAuthFetcher code due to upstream bug | No, not desired| N/A |
|
||||
| [0045-Disable-adding-a-signed-out-avatar-on-new-tab-pages-](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0045-Disable-adding-a-signed-out-avatar-on-new-tab-pages-.patch) | Disables adding a signed-out avatar on new tab pages | No, not desired | N/A |
|
||||
| [0046-Disable-newer-privacy-sandbox-features-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0046-Disable-newer-privacy-sandbox-features-by-default.patch) | Disables newer privacy sandbox features | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0047-Disable-WebGPU-in-Android-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0047-Disable-WebGPU-in-Android-by-default.patch) | Disables WebGPU in Android | No, Android only | N/A |
|
||||
| [0048-always-use-local-new-tab-page](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0048-always-use-local-new-tab-page.patch) | Always use local new tab page | No, not desired| N/A |
|
||||
| [0049-mark-non-secure-origins-as-dangerous](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0049-mark-non-secure-origins-as-dangerous.patch) | Marks non-secure origins as dangerous | Yes | MISSING |
|
||||
| [0050-most-private-WebRTC-IP-handling-policy-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0050-most-private-WebRTC-IP-handling-policy-by-default.patch) | Most private WebRTC IP handling policy by default | Yes | Set [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L29) |
|
||||
| [0051-stub-out-the-battery-status-API](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0051-stub-out-the-battery-status-API.patch) | Stubs out the battery status API | No, Android only | N/A |
|
||||
| [0052-stop-ignoring-download-location-prompt-setting](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0052-stop-ignoring-download-location-prompt-setting.patch) | Stops ignoring download location prompt setting | No, Android only | N/A |
|
||||
| [0053-show-download-prompt-again-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0053-show-download-prompt-again-by-default.patch) | Shows download prompt again by default | No, Android only | N/A |
|
||||
| [0054-disable-trials-of-privacy-aware-analytics-advertisin](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0054-disable-trials-of-privacy-aware-analytics-advertisin.patch) | Disables trials of privacy-aware analytics advertising | Yes | MISSING |
|
||||
| [0055-disable-using-Play-services-fonts](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0055-disable-using-Play-services-fonts.patch) | Disables using Play services fonts | No, Android only | N/A |
|
||||
| [0056-disable-appending-variations-header](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0056-disable-appending-variations-header.patch) | Disables appending variations header | No, not desired | N/A |
|
||||
| [0057-Disable-detailed-language-settings-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0057-Disable-detailed-language-settings-by-default.patch) | Disables detailed language settings by default | No, not desired | N/A |
|
||||
| [0058-disable-fetching-optimization-guides-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0058-disable-fetching-optimization-guides-by-default.patch) | Disables fetching optimization guides by default | No, not desired | N/A |
|
||||
| [0059-set-default-search-engine-to-DuckDuckGo](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0059-set-default-search-engine-to-DuckDuckGo.patch) | Sets default search engine to DuckDuckGo | No, not desired | N/A |
|
||||
| [0060-set-original-package-to-org.chromium.chrome](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0060-set-original-package-to-org.chromium.chrome.patch) | Sets original package to org.chromium.chrome | No, Android only | N/A |
|
||||
| [0061-Make-HTTPS-only-mode-the-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0061-Make-HTTPS-only-mode-the-default.patch) | Makes HTTPS-only mode the default | Yes | Set [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L13) |
|
||||
| [0062-require-HTTPS-for-component-updates](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0062-require-HTTPS-for-component-updates.patch) | Requires HTTPS for component updates | Yes | MISSING |
|
||||
| [0063-use-vanadium.app-for-component-updates](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0063-use-vanadium.app-for-component-updates.patch) | Use vanadium.app for component updates | No, not desired | N/A |
|
||||
| [0064-use-grapheneos.network-when-verifying-DNS-over-HTTPS](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0064-use-grapheneos.network-when-verifying-DNS-over-HTTPS.patch) | Use grapheneos.network when verifying DNS over HTTPS | No, not desired | N/A |
|
||||
| [0065-Use-GrapheneOS-connectivity-check-as-well-for-Help-a](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0065-Use-GrapheneOS-connectivity-check-as-well-for-Help-a.patch) | Use GrapheneOS connectivity check as well for Help | No, not desired | N/A |
|
||||
| [0066-enable-memory-tagging-in-all-processes](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0066-enable-memory-tagging-in-all-processes.patch) | Enable memory tagging in all processes | No, Android only | N/A |
|
||||
| [0067-bugfix-do-not-attempt-to-re-enable-memory-tagging](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0067-bugfix-do-not-attempt-to-re-enable-memory-tagging.patch) | Bugfix: do not attempt to re-enable memory tagging | No, Android only | N/A |
|
||||
| [0068-enable-prefetch-privacy-changes-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0068-enable-prefetch-privacy-changes-by-default.patch) | Enable prefetch privacy changes by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0069-enable-split-cache-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0069-enable-split-cache-by-default.patch) | Enable split cache by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0070-enable-partitioning-connections-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0070-enable-partitioning-connections-by-default.patch) | Enable partitioning connections by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0071-enable-dubious-Do-Not-Track-feature-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0071-enable-dubious-Do-Not-Track-feature-by-default.patch) | Enable dubious Do Not Track feature by default | No, not desired | N/A |
|
||||
| [0072-enable-strict-site-isolation-by-default-on-Android](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0072-enable-strict-site-isolation-by-default-on-Android.patch) | Enable strict site isolation by default on Android | No, Android only | N/A |
|
||||
| [0073-Enable-strict-origin-isolation-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0073-Enable-strict-origin-isolation-by-default.patch) | Enable strict origin isolation by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0074-Enable-reduce-accept-language-header-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0074-Enable-reduce-accept-language-header-by-default.patch) | Enable reduce accept language header by default | No, fingerprinting related | N/A |
|
||||
| [0075-enable-process-isolated-sandboxed-iframes-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0075-enable-process-isolated-sandboxed-iframes-by-default.patch) | Enable process isolated sandboxed iframes by default | Yes | Set [in secureblue chromium.conf](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/chromium.conf) |
|
||||
| [0076-use-Google-Chrome-branding-for-client-hints](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0076-use-Google-Chrome-branding-for-client-hints.patch) | Use Google Chrome branding for client hints | No, fingerprinting related | N/A |
|
||||
| [0077-add-trichrome-browser-apk-targets](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0077-add-trichrome-browser-apk-targets.patch) | Add trichrome browser APK targets | No, Android only | N/A |
|
||||
| [0078-Remove-logo-from-chrome-version](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0078-Remove-logo-from-chrome-version.patch) | Remove logo from Chrome version | No, Android only | N/A |
|
||||
| [0079-redirect-settings-help-icon](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0079-redirect-settings-help-icon.patch) | Redirect settings help icon | No, branding related | N/A |
|
||||
| [0080-remove-Google-prefix-from-storage-settings-label](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0080-remove-Google-prefix-from-storage-settings-label.patch) | Remove Google prefix from storage settings label | No, branding related | N/A |
|
||||
| [0081-remove-Help-feedback-menu-entry](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0081-remove-Help-feedback-menu-entry.patch) | Remove Help feedback menu entry | No, Android only | N/A |
|
||||
| [0082-hide-passwords.google.com-link-when-not-supported](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0082-hide-passwords.google.com-link-when-not-supported.patch) | Hide passwords.google.com link when not supported | No, Android only | N/A |
|
||||
| [0083-update-trichrome_library_apk-expectation-file](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0083-update-trichrome_library_apk-expectation-file.patch) | Update trichrome_library_apk expectation file | No, Android only | N/A |
|
||||
| [0084-Consolidate-downstream-changes-in-dependencies-sourc](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0084-Consolidate-downstream-changes-in-dependencies-sourc.patch) | Consolidate downstream changes in dependencies source | No, Android only | N/A |
|
||||
| [0085-Consolidate-downstream-strings-in-a-separate-file-fo](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0085-Consolidate-downstream-strings-in-a-separate-file-fo.patch) | Consolidate downstream strings in a separate file | No, branding related | N/A |
|
||||
| [0086-Utility-class-for-adding-shared-preference-keys](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0086-Utility-class-for-adding-shared-preference-keys.patch) | Utility class for adding shared preference keys | No, Android only | N/A |
|
||||
| [0087-Helper-class-for-modifying-preferences-at-chrome-lay](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0087-Helper-class-for-modifying-preferences-at-chrome-lay.patch) | Helper class for modifying preferences at Chrome layer | No, Android only | N/A |
|
||||
| [0088-Utility-class-for-modifying-preferences-at-Privacy-s](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0088-Utility-class-for-modifying-preferences-at-Privacy-s.patch) | Utility class for modifying preferences at Privacy settings layer | No, Android only | N/A |
|
||||
| [0089-Remove-not-applicable-additional-terms-of-services](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0089-Remove-not-applicable-additional-terms-of-services.patch) | Remove not applicable additional terms of services | No, branding related | N/A |
|
||||
| [0090-remove-Google-terms-of-use-and-privacy-policy](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0090-remove-Google-terms-of-use-and-privacy-policy.patch) | Remove Google terms of use and privacy policy | No, branding related | N/A |
|
||||
| [0091-disable-unused-password-check-feature](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0091-disable-unused-password-check-feature.patch) | Disable unused password check feature | No, Android only | N/A |
|
||||
| [0092-remove-unwanted-sync-and-services-link](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0092-remove-unwanted-sync-and-services-link.patch) | Remove unwanted sync and services link | No, branding related | N/A |
|
||||
| [0093-remove-safety-check-menu](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0093-remove-safety-check-menu.patch) | Remove safety check menu | No, not desired | N/A |
|
||||
| [0094-remove-unwanted-account-and-services-section](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0094-remove-unwanted-account-and-services-section.patch) | Remove unwanted account and services section | No, not desired | N/A |
|
||||
| [0095-remove-translate-offer-preference](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0095-remove-translate-offer-preference.patch) | Remove translate offer preference | Yes | Disabled [in secureblue policies](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json#L26) |
|
||||
| [0096-Hide-Sign-In-preference-when-disallowed](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0096-Hide-Sign-In-preference-when-disallowed.patch) | Hide Sign-In preference when disallowed | No, not desired | N/A |
|
||||
| [0097-Hide-currently-no-op-preload-settings](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0097-Hide-currently-no-op-preload-settings.patch) | Hide currently no-op preload settings | No, not desired | N/A |
|
||||
| [0098-Remove-privacy-trials-preference-UI](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0098-Remove-privacy-trials-preference-UI.patch) | Remove privacy trials preference UI | No, not desired | N/A |
|
||||
| [0099-Remove-privacy-guides-preference-UI](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0099-Remove-privacy-guides-preference-UI.patch) | Remove privacy guides preference UI | No, not desired | N/A |
|
||||
| [0100-Move-search-suggestions-back-to-privacy-section](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0100-Move-search-suggestions-back-to-privacy-section.patch) | Move search suggestions back to privacy section | No, not desired | N/A |
|
||||
| [0101-Toggle-for-closing-tabs-on-exit](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0101-Toggle-for-closing-tabs-on-exit.patch) | Toggle for closing tabs on exit | No, not desired | N/A |
|
||||
| [0102-Toggle-for-navigating-external-URL-in-incognito](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0102-Toggle-for-navigating-external-URL-in-incognito.patch) | Toggle for navigating external URL in incognito | No, not desired | N/A |
|
||||
| [0103-Implement-UI-for-JIT-site-settings](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0103-Implement-UI-for-JIT-site-settings.patch) | Implement UI for JIT site settings | Yes | JIT is globally disabled [in secureblue config](https://github.com/secureblue/secureblue/blob/live/config/files/usr/etc/chromium/policies/managed/hardening.json.readme.md) |
|
||||
| [0104-Implement-UI-for-WebRTC-toggle](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0104-Implement-UI-for-WebRTC-toggle.patch) | Implement UI for WebRTC toggle | No, not desired | N/A |
|
||||
| [0105-Do-not-clear-the-url-bar-on-focus-by-default-for-sea](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0105-Do-not-clear-the-url-bar-on-focus-by-default-for-sea.patch) | Do not clear the URL bar on focus by default for search | No, Android only | N/A |
|
||||
| [0106-Handle-web-search-action-in-browser](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0106-Handle-web-search-action-in-browser.patch) | Handle web search action in browser | No, Android only | N/A |
|
||||
| [0107-Support-opening-external-web-search-in-incognito](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0107-Support-opening-external-web-search-in-incognito.patch) | Support opening external web search in incognito | No, Android only | N/A |
|
||||
| [0108-Add-missing-null-check-for-password-manager-autofill](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0108-Add-missing-null-check-for-password-manager-autofill.patch) | Add missing null check for password manager autofill | No, not desired | N/A |
|
||||
| [0109-make-cross-origin-referrer-behavior-configurable](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0109-make-cross-origin-referrer-behavior-configurable.patch) | Make cross-origin referrer behavior configurable | No, not desired | N/A |
|
||||
| [0110-Derive-high-entropy-client-hints-with-reduced-user-a](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0110-Derive-high-entropy-client-hints-with-reduced-user-a.patch) | Derive high entropy client hints with reduced user agent | No, fingerprinting related | N/A |
|
||||
| [0111-temporary-Disable-changes-to-high-entropy-client-hin](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0111-temporary-Disable-changes-to-high-entropy-client-hin.patch) | Temporary disable changes to high entropy client hints | No, fingerprinting related | N/A |
|
||||
| [0112-Drop-workaround-with-android-autofill-in-compatibili](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0112-Drop-workaround-with-android-autofill-in-compatibili.patch) | Drop workaround with Android autofill in compatibility | No, Android only | N/A |
|
||||
| [0113-Enable-android-autofill-on-http-authentication-dialo](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0113-Enable-android-autofill-on-http-authentication-dialo.patch) | Enable Android autofill on HTTP authentication dialog | No, Android only | N/A |
|
||||
| [0114-Enable-usage-of-Android-Autofill-by-default](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0114-Enable-usage-of-Android-Autofill-by-default.patch) | Enable Android Autofill by default | No, Android only | N/A |
|
||||
| [0115-upstream-Android-3PPWM-AutofillProvider-calls-Androi](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0115-upstream-Android-3PPWM-AutofillProvider-calls-Androi.patch) | Android autofill related | No, Android only | N/A |
|
||||
| [0116-upstream-Android-3PPWM-Factory-to-create-correct-cli](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0116-upstream-Android-3PPWM-Factory-to-create-correct-cli.patch) | Android autofill related | No, Android only | N/A |
|
||||
| [0117-upstream-3PPWM-Rewire-Chrome-Autofill-to-defer-to-An](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0117-upstream-3PPWM-Rewire-Chrome-Autofill-to-defer-to-An.patch) | Android autofill related | No, Android only | N/A |
|
||||
| [0118-upstream-Android-3PPWM-Make-provider-available-in-gu](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0118-upstream-Android-3PPWM-Make-provider-available-in-gu.patch) | Android autofill related | No, Android only | N/A |
|
||||
| [0119-upstream-Android-3PPWM-For-AwG-fall-back-to-built-in](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0119-upstream-Android-3PPWM-For-AwG-fall-back-to-built-in.patch) | Android autofill related | No, Android only | N/A |
|
||||
| [0120-Disable-Play-services-dependent-password-manager-pre](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0120-Disable-Play-services-dependent-password-manager-pre.patch) | Disable Play services dependent password manager | No, Android only | N/A |
|
||||
| [0121-Use-local-list-of-supported-languages-for-Language-s](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0121-Use-local-list-of-supported-languages-for-Language-s.patch) | Use local list of supported languages for Language settings | Yes | MISSING |
|
||||
| [0122-Extend-opening-links-from-external-apps-in-incognito](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0122-Extend-opening-links-from-external-apps-in-incognito.patch) | Extend opening links from external apps in incognito for custom tabs | No, Android only | N/A |
|
||||
| [0123-Extend-opening-links-from-external-apps-in-incognito](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0123-Extend-opening-links-from-external-apps-in-incognito.patch) | Extend opening links from external apps incognito for search tabs | No, Android only | N/A |
|
||||
| [0124-Extend-opening-links-from-external-apps-in-incognito](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0124-Extend-opening-links-from-external-apps-in-incognito.patch) | Extend opening links from external apps in incognito for share intents | No, Android only | N/A |
|
||||
| [0125-temporary-Always-partition-third-party-storage](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0125-temporary-Always-partition-third-party-storage.patch) | Temporary always partition third-party storage | Yes | MISSING |
|
||||
| [0126-Do-not-select-search-query-text-when-opening-web-and](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0126-Do-not-select-search-query-text-when-opening-web-and.patch) | Do not select search query text when opening web and | No, Android only | N/A |
|
||||
| [0127-Add-an-easily-extensible-way-to-reference-targets-ea](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0127-Add-an-easily-extensible-way-to-reference-targets-ea.patch) | Add an easily extensible way to reference targets easily in ninja | No, not desired | N/A |
|
||||
| [0128-Add-a-new-config-like-apk-target-for-building](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0128-Add-a-new-config-like-apk-target-for-building.patch) | Add a new config-like apk target for building | No, Android only | N/A |
|
||||
| [0129-config-Directly-reference-config-apk-build-target](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0129-config-Directly-reference-config-apk-build-target.patch) | Directly reference config apk build target | No, Android only | N/A |
|
||||
| [0130-config-Generate-ConfigInfo-from-config-apk](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0130-config-Generate-ConfigInfo-from-config-apk.patch) | Generate ConfigInfo from config apk | No, Android only | N/A |
|
||||
| [0131-config-Provide-targets-for-linking-and-inclusion-of-](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0131-config-Provide-targets-for-linking-and-inclusion-of-.patch) | Provide targets for linking and inclusion of ConfigInfo in apk | No, Android only | N/A |
|
||||
| [0132-config-Include-the-ConfigInfo-class-for-Monochrome-a](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0132-config-Include-the-ConfigInfo-class-for-Monochrome-a.patch) | Include the ConfigInfo class for Monochrome and Trichrome targets | No, Android only | N/A |
|
||||
| [0133-config-Include-the-ConfigInfo-class-for-WebView-targ](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0133-config-Include-the-ConfigInfo-class-for-WebView-targ.patch) | Include the ConfigInfo class for WebView targets with java code | No, Android only | N/A |
|
||||
| [0134-config-test-Add-ConfigInfo-on-necessary-integration-](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0134-config-test-Add-ConfigInfo-on-necessary-integration-.patch) | Add ConfigInfo on necessary integration test targets | No, Android only | N/A |
|
||||
| [0135-config-Add-proto-definitions-for-feature-flags-and-o](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0135-config-Add-proto-definitions-for-feature-flags-and-o.patch) | Add proto definitions for feature flags and out-of-band component shipping | No, Android only | N/A |
|
||||
| [0136-config-Add-protobuf-generator-parser-for-config-apk-](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0136-config-Add-protobuf-generator-parser-for-config-apk-.patch) | Add protobuf generator, parser for config apk contents | No, Android only | N/A |
|
||||
| [0137-config-Initial-configuration-for-config-apk](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0137-config-Initial-configuration-for-config-apk.patch) | Initial configuration for config apk | No, Android only | N/A |
|
||||
| [0138-config-Add-config-parser-for-browser-and-webview](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0138-config-Add-config-parser-for-browser-and-webview.patch) | Add config parser for browser and WebView | No, Android only | N/A |
|
||||
| [0139-config-Helper-script-for-fetching-content-filtering-](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0139-config-Helper-script-for-fetching-content-filtering-.patch) | Helper script for fetching content filtering... | No, Android only | N/A |
|
||||
| [0140-config-add-new-needed-deps-to-fetch-filter-lists](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0140-config-add-new-needed-deps-to-fetch-filter-lists.patch) | Add new needed dependencies to fetch filter lists | No, Android only | N/A |
|
||||
| [0141-config-Build-target-for-android-assets-including-the](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0141-config-Build-target-for-android-assets-including-the.patch) | Build target for android assets including the content filtering file | No, Android only | N/A |
|
||||
| [0142-config-Build-target-for-android-assets-for-config-fi](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0142-config-Build-target-for-android-assets-for-config-fi.patch) | Build target for android assets for config file protobuf | No, Android only | N/A |
|
||||
| [0143-config-Add-the-needed-component-and-protobuf-file-fo](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0143-config-Add-the-needed-component-and-protobuf-file-fo.patch) | Add the needed component and protobuf file for parsing | No, Android only | N/A |
|
||||
| [0144-Extension-of-build-system-for-java-files-in-base-lay](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0144-Extension-of-build-system-for-java-files-in-base-lay.patch) | Extension of build system for java files in base layer | No, Android only | N/A |
|
||||
| [0145-Add-hooks-for-LibraryLoader-on-early-initialization-](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0145-Add-hooks-for-LibraryLoader-on-early-initialization-.patch) | Add hooks for LibraryLoader on early initialization and command line switches | No, Android only | N/A |
|
||||
| [0146-Add-hooks-for-initializing-contents-of-VanadiumConfi](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0146-Add-hooks-for-initializing-contents-of-VanadiumConfi.patch) | Add hooks for initializing contents of VanadiumConfig app | No, Android only | N/A |
|
||||
| [0147-Extension-of-build-system-at-android-specific-subres](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0147-Extension-of-build-system-at-android-specific-subres.patch) | Extension of build system at android-specific subresource filter sources | No, Android only | N/A |
|
||||
| [0148-Expose-fetching-config-state-for-content-filtering-t](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0148-Expose-fetching-config-state-for-content-filtering-t.patch) | Expose fetching config state for content filtering to native calls | No, Android only | N/A |
|
||||
| [0149-Use-ruleset-from-config-apk-whenever-it-s-present](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0149-Use-ruleset-from-config-apk-whenever-it-s-present.patch) | Use ruleset from config apk whenever it's present | No, Android only | N/A |
|
||||
| [0150-Add-update-handling-of-subresource-filter-component-](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0150-Add-update-handling-of-subresource-filter-component-.patch) | Add update handling of subresource filter component from config apk | No, Android only | N/A |
|
||||
| [0151-Extension-of-build-system-for-static-library-deps-at](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0151-Extension-of-build-system-for-static-library-deps-at.patch) | Extension of build system for static library deps at browser layer | No, Android only | N/A |
|
||||
| [0152-Update-subresource-filter-from-config-apk](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0152-Update-subresource-filter-from-config-apk.patch) | Update subresource filter from config apk | No, Android only | N/A |
|
||||
| [0153-Use-the-content-filtering-from-config-app-when-avail](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0153-Use-the-content-filtering-from-config-app-when-avail.patch) | Use the content filtering from config app when available | No, Android only | N/A |
|
||||
| [0154-subresource-filter-rules-version-on-about-Vanadium-s](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0154-subresource-filter-rules-version-on-about-Vanadium-s.patch) | subresource filter rules version on about Vanadium settings page | No, Android only | N/A |
|
||||
| [0155-don-t-show-subresource-filter-UI-for-site](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0155-don-t-show-subresource-filter-UI-for-site.patch) | Don't show subresource filter UI for site | No, Android only | N/A |
|
||||
| [0156-enable-subresource-filter-on-all-sites](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0156-enable-subresource-filter-on-all-sites.patch) | Enable subresource filter on all sites | No, Android only | N/A |
|
||||
| [0157-Use-the-old-naming-convention-of-Ads-in-ads-site-set](https://github.com/GrapheneOS/Vanadium/blob/main/patches/0157-Use-the-old-naming-convention-of-Ads-in-ads-site-set.patch) | Use the old naming convention of Ads in ads site settings | No, Android only | N/A |
|
||||
|
||||
Reference in New Issue
Block a user