Salmin Skenderovic

Results 29 comments of Salmin Skenderovic

I will test that approach out. Thanks!

The chromium team were aware of this issue (see comment https://issues.chromium.org/issues/363027634#comment4) And someone even mentioned [vite-plugin-web-extension](https://github.com/samrum/vite-plugin-web-extension) being affected which seems to have been patched quickly by the author. CrxJs seems...

Thank you! I kept searching for stdin in the documentation which led me elsewhere. Maybe you can add the keyword "stdin" to this section as well, just so that it...

running the executable from the terminal works. It prints out the inputs, but I can't seem to get it working when using the executable as a native messaging host: https://developer.chrome.com/docs/extensions/develop/concepts/native-messaging...

@shalithasuranga I recorded a video to show the issue I'm having with `app.readProcessInput()` I have a tester.js script which replicates how chrome uses stdio to start a process and communicate...

this is still an issue for us. The workaround is to create a local file that you can import from background.ts, and let that local file import `@scope/content/injected/myFeature` Importing from...

I meant that if you want to import and register a dynamic content script, but from a package, I would need to create an entry-file. E.g. I can create a...

can I keep this issue open? I can try and fix it myself but want to keep it open for visibility

I use ?script to get the url to a JS file, in order to use `registerContentScripts` to run my JS in the main world. This is something Jack implemented and...

I believe that is a slightly different issue than mine. To replicate this all you need to do is change the dev-script to: ``` "scripts": { "dev": "vite build --watch",...