Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GoogleChrome/chrome-launcher
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.0
Choose a base ref
...
head repository: GoogleChrome/chrome-launcher
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 20, 2024

  1. flags: disable privacy sandbox dialog (#328)

    paulirish authored Mar 20, 2024
    Copy the full SHA
    e916b7a View commit details
  2. 1.1.1 (#329)

    adamraine authored Mar 20, 2024
    Copy the full SHA
    5a27dd5 View commit details
Showing with 4 additions and 1 deletion.
  1. +1 −0 docs/chrome-flags-for-tools.md
  2. +1 −1 package.json
  3. +2 −0 src/flags.ts
1 change: 1 addition & 0 deletions docs/chrome-flags-for-tools.md
Original file line number Diff line number Diff line change
@@ -58,6 +58,7 @@ Here's a **[Nov 2022 comparison of what flags](https://docs.google.com/spreadshe
* `--disable-external-intent-requests`: Disallow opening links in external applications
* `--disable-features=GlobalMediaControls`: Hide toolbar button that opens dialog for controlling media sessions.
* `--disable-features=ImprovedCookieControls`: Disables an improved UI for third-party cookie blocking in incognito mode.
* `--disable-features=PrivacySandboxSettings4`: Disables "Enhanced ad privacy in Chrome" dialog (if it wasn't disabled through other means).
* `--disable-notifications`: Disables the Web Notification and the Push APIs.
* `--disable-popup-blocking`: Disable popup blocking. `--block-new-web-contents` is the strict version of this.
* `--disable-prompt-on-repost`: Reloading a page that came from a POST normally prompts the user.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@
"is-wsl": "^2.2.0",
"lighthouse-logger": "^2.0.1"
},
"version": "1.1.0",
"version": "1.1.1",
"types": "./dist/index.d.ts",
"description": "Launch latest Chrome with the Devtools Protocol port open",
"repository": "https://github.com/GoogleChrome/chrome-launcher/",
2 changes: 2 additions & 0 deletions src/flags.ts
Original file line number Diff line number Diff line change
@@ -29,6 +29,8 @@ export const DEFAULT_FLAGS: ReadonlyArray<string> = [
'CertificateTransparencyComponentUpdater',
// Disables autofill server communication. This feature isn't disabled via other 'parent' flags.
'AutofillServerCommunication',
// Disables "Enhanced ad privacy in Chrome" dialog (though as of 2024-03-20 it shouldn't show up if the profile has no stored country).
'PrivacySandboxSettings4',
].join(','),

// Disable all chrome extensions