Unable to login into Google Account
Describe the bug
Hi, I unable to login into my Google Account in Chrome Browser launched by WXT.
Reproduction
Just run npm run dev and try to login into your Google Account.
Steps to reproduce
My wxt.config.ts
webExt: {
chromiumProfile: process.platform === 'win32' ? resolve('.wxt/chrome-data') : './.wxt/chrome-data',
keepProfileChanges: true,
chromiumArgs: ['--lang=en'],
},
System Info
System:
OS: Windows 11 10.0.26100
CPU: (20) x64 13th Gen Intel(R) Core(TM) i5-13600KF
Memory: 20.38 GB / 31.84 GB
Binaries:
Node: 24.7.0 - C:\Program Files\nodejs\node.EXE
npm: 11.6.0 - C:\Program Files\nodejs\npm.CMD
Browsers:
Edge: Chromium (140.0.3485.54)
npmPackages:
vite: ^7.1.5 => 7.1.5
wxt: ^0.20.11 => 0.20.11
Used Package Manager
npm
Validations
- [x] Read the Contributing Guidelines.
- [x] Read the docs.
- [x] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
- [x] Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord Chat Server.
- [x] The provided reproduction is a minimal reproducible example of the bug.
me to
set:
export default defineWebExtConfig({
disabled: true,
Now, I use the way that load ".output/chrome-mv3-dev" as an unpacked extension manually
@PendalF89 You can handle this problem in this way. https://github.com/mozilla/web-ext/issues/3511
@a523 wow! Thanks a lot! That helped me :)
webExt: {
chromiumArgs: ['--disable-blink-features=AutomationControlled'],
},
@a523 Hi
I think it's good idea to add this flag to docs, to let know devs, how to integrate google auth effortlessly.
Even till it'll be fixed in someway by web-ext :)