Open file explorer window

Hi @DavideBarranca , the same domains that work for you will work for me in windows 10 too, this would be a good alternative, for a feature that I’ve been looking for months for my use case, like opening the file explorer in the folder that contains the content generated by my plugin at the end of the event.
I found out in the link below that this feature exists and it works almost perfectly.

manifest.json

   "requiredPermissions": {
     "localFileSystem": "fullAccess",
     "launchProcess": {
       "extensions": [
         ""
       ]
     }

index.js

shell.openPath("C:/myPath")

However, I am not able to find a key in the manifest or any other method that prevents the display of the “Request For Permission” window, whenever the directory is different.
Captura de tela 2023-05-10 084215

Is there any way to avoid this window? Thanks.