wxt icon indicating copy to clipboard operation
wxt copied to clipboard

Unable to login into Google Account

Open PendalF89 opened this issue 5 months ago • 5 comments

Describe the bug

Hi, I unable to login into my Google Account in Chrome Browser launched by WXT. Image

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

PendalF89 avatar Sep 12 '25 09:09 PendalF89

me to

a523 avatar Sep 13 '25 08:09 a523

set:

export default defineWebExtConfig({
    disabled: true,

Now, I use the way that load ".output/chrome-mv3-dev" as an unpacked extension manually

a523 avatar Sep 13 '25 09:09 a523

@PendalF89 You can handle this problem in this way. https://github.com/mozilla/web-ext/issues/3511

a523 avatar Sep 14 '25 12:09 a523

@a523 wow! Thanks a lot! That helped me :)

webExt: {
  chromiumArgs: ['--disable-blink-features=AutomationControlled'],
},

PendalF89 avatar Sep 26 '25 09:09 PendalF89

@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 :)

PatrykKuniczak avatar Nov 07 '25 08:11 PatrykKuniczak