Gajanan Patil

Results 6 comments of Gajanan Patil

Hi @bestplay9384 You can directly execute puppeteer script in background using [puppeteer-extension-transport](https://github.com/gajananpp/puppeteer-extension-transport) package. Checkout this example https://github.com/gajananpp/puppeteer-extension-transport/tree/main/examples/extension-v3

@bestplay9384, yes creating or migrating to v3 extension is really difficult if it involves working with `eval`. I thought about your use case but couldn't think of any direct way...

Hi, Can you try changing shortcut key in `build/examples/extension-v3/manifest.json` from `Alt+E` to `Ctrl+Shift+E` and try

Hi @yarekc, In this extension it's not possible as it needs devtools panel kept opened to execute scripts but you can use [puppeteer-extension-transport](https://github.com/gajananpp/puppeteer-extension-transport) package to implement automatic execution according to...

Hi, Sorry for the late reply. With extension alone i didn't found any extension API to access Chrome's CLI flags but could be possible if extension have [Native Messaging Host](https://developer.chrome.com/docs/apps/nativeMessaging/)...

Hi, There is no way to save screenshot to given path but you can do ```javascript await page.goto("https://stackoverflow.com/questions/50715164"); const userInfo = await page.$(".user-info"); // get image as base64 string const...