Add Addon record and support for utility addons

Introduces the Addon record to represent browser addons and updates StealthConfig to support loading multiple utility addons per browser. The Firefox driver now installs specified addons from the UtilityAddons array, improving extensibility for browser automation.
This commit is contained in:
qwsdcvghyu89
2025-11-16 00:37:17 +11:00
parent a20d48ef02
commit 6f37d217db
2 changed files with 11 additions and 4 deletions
+3
View File
@@ -0,0 +1,3 @@
namespace Beam.Stealth;
public record Addon(Browser Browser, string AddonPath);