Home
Softono

Puppeteer Sharp Extra

Open source MIT C#
220
Stars
76
Forks
26
Issues
18
Watchers
8 months
Last Commit

 About Puppeteer Sharp Extra

Plugin framework for PuppeteerSharp

Platforms

Web Self-hosted Windows

Languages

C#

Need Help Installing Puppeteer Sharp Extra?

We provide expert installation service for this software. Our team will install, configure, and secure Puppeteer Sharp Extra on your server. plans start at just $30.

Puppeteer Sharp Extra

View on GitHub

PuppeteerExtraSharp

NuGet Downloads NuGet Version

PuppeteerExtraSharp is a .NET port of the puppeteer-extra library for Node.js

Plugins

🪄 Puppeteer captcha solver plugin

  • Automatically handles reCAPTCHA challenges (v2, invisible, v3), GeeTest, CloudFlare.

🏴 Puppeteer stealth plugin

  • Applies multiple evasions to make headless automation harder to detect.

📃 Puppeteer block resources plugin

  • Block unwanted network requests (scripts, images, documents, etc.) using simple, composable rules

Quick Start

// Initialize plugin builder
var extra = new PuppeteerExtra();

// Enable the Stealth plugin
extra.Use(new StealthPlugin());

// Launch the browser with plugins applied
var browser = await extra.LaunchAsync();

// Create a new page
var page = await browser.NewPageAsync();

await page.GoToAsync("https://google.com");
await Task.Delay(2000);

// Take a screenshot
await page.ScreenshotAsync("extra.png");

Notes

  • Use the captcha solver plugin only on properties you own or where you have explicit permission to automate.
  • Some targets may still detect automation; adjust plugin combinations and browser settings as needed.