From 26fe83901df7e812050d1ba97c4d8be8ae89a474 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Wed, 5 Nov 2025 11:40:41 +0100 Subject: [PATCH] chore: remove special handling for target urls --- src/browser.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/browser.ts b/src/browser.ts index ec6c00c7c..3abcbe00e 100644 --- a/src/browser.ts +++ b/src/browser.ts @@ -30,10 +30,6 @@ function makeTargetFilter() { if (target.url() === 'chrome://newtab/') { return true; } - if (target.url().startsWith('https://ogs.google.com/')) { - // Some special frame on the NTP that is not picked up by CDP-auto-attach. - return false; - } for (const prefix of ignoredPrefixes) { if (target.url().startsWith(prefix)) { return false;