When using Browserless with Playwright, Stealth mode does not seem to work. Is this feature planned in the next version? ``` def test_browserless_stealth_mode(): with sync_playwright() as context: browser = context.chromium.connect( ws_endpoint='ws://0.0.0.0:3000/playwright?stealth=1&timeout=60000', timeout=60000 ) page = browser.new_page() page.goto('https://bot.sannysoft.com') page.wait_for_timeout(5000) page.screenshot(path='testresult.png', full_page=True) browser.close() ``` 