Open lukaw3d opened 1 year ago
context.route only finds requests to chrome-extension://
context.route
chrome-extension://
context.backgroundPages..route doesn't help either
context.backgroundPages..route
await context.backgroundPages()[0].route('https:**', async route => { console.log(route.request().url()) route.continue() })
https://playwright.dev/docs/service-workers-experimental might work for MV3 service workers, but doesn't seem to work for MV2 background pages
context.route
only finds requests tochrome-extension://
context.backgroundPages..route
doesn't help either