Skip to content

Commit 26fe839

Browse files
committed
chore: remove special handling for target urls
1 parent 418934a commit 26fe839

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/browser.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ function makeTargetFilter() {
3030
if (target.url() === 'chrome://newtab/') {
3131
return true;
3232
}
33-
if (target.url().startsWith('https://ogs.google.com/')) {
34-
// Some special frame on the NTP that is not picked up by CDP-auto-attach.
35-
return false;
36-
}
3733
for (const prefix of ignoredPrefixes) {
3834
if (target.url().startsWith(prefix)) {
3935
return false;

0 commit comments

Comments
 (0)