Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Error: net::ERR_ABORTED at chrome-extension:// - while Loading extension #323

Open
telltokichu opened this issue Dec 11, 2024 · 1 comment
Labels
help wanted Extra attention is needed

Comments

@telltokichu
Copy link

telltokichu commented Dec 11, 2024

Environment

  • chromium Version: "^131.0.1"
  • puppeteer Version: "^23.10.3"
  • Node.js Version: v18.18.2
  • Lambda / GCF Runtime: v18.18.2

Expected Behavior

it should load the extension and we should be able to use it

Current Behavior

An error occurred: Error: net::ERR_ABORTED at chrome-extension://...

Steps to Reproduce

const browser = await puppeteer.launch({
        executablePath: await chromium.executablePath(),
        headless: true,
        defaultViewport: null,
        args: [
            "--disable-features=IsolateOrigins,site-per-process",
            "--disable-web-security",
            "--no-sandbox",
            "--disable-setuid-sandbox",
            "--disable-gpu",
            "--no-zygote",
            "--single-process",
            `--disable-extensions-except=${extensionPath}`, // Load the specific extension
            `--load-extension=${extensionPath}`, // Specify the extension path
        ],
    });

Does it support loading extension ?

@telltokichu telltokichu added the bug Something isn't working label Dec 11, 2024
@Sparticuz
Copy link
Owner

I've never tried an extension, but if you figure it out, please post!

@Sparticuz Sparticuz added help wanted Extra attention is needed and removed bug Something isn't working labels Jan 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants