Sergey Khalitov

Results 2 comments of Sergey Khalitov

Can you update instruction [https://github.com/rekab-app/background_locator/wiki/Use-other-plugins-in-callback](url)?

You need own Error, for example: ```javascript class PuppeteerExtraPluginRecaptchaError extends Error { constructor(message, data) { super(message); this.name = this.constructor.name; this.data = data; } } ``` and change this ```javascript if...