From 8cc53f71d441d4a11ebbef5e34045a2fedc8736b Mon Sep 17 00:00:00 2001 From: iTrooz Date: Thu, 30 Apr 2026 13:51:15 +0200 Subject: [PATCH] feat: disable android.clients.google.com requests in Chromium app --- src/interceptors/chromium-based-interceptors.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/interceptors/chromium-based-interceptors.ts b/src/interceptors/chromium-based-interceptors.ts index 39fbb1fc..845f0f0c 100644 --- a/src/interceptors/chromium-based-interceptors.ts +++ b/src/interceptors/chromium-based-interceptors.ts @@ -61,6 +61,8 @@ const getChromiumLaunchOptions = async ( ].join(','), // Avoid annoying extra network noise: '--disable-background-networking', + // Disable android.clients.google.com calls + '--gcm-checkin-url= --gcm-registration-url= --gcm-mcs-endpoint=', // Disable component update (without disabling components themselves, e.g. widevine) // See https://bugs.chromium.org/p/chromium/issues/detail?id=331932 '--component-updater=url-source=http://disabled-chromium-update.localhost:0',