HMR for other chromium browsers

Is it possible to run a development server for opera, firefox, brave, edge, etc? I tried chaining run commands by specifying a dev target and haven't had any luck.
plasmo dev --target=<some-chromium-target>-dev


From what I can tell it's this addition to the manifest that achieves this dev server behavior:
{
            "matches": [
                "<all_urls>"
            ],
            "resources": [
                "__plasmo_hmr_proxy__"
            ]
        }

Is there maybe a flag that can be used to achieve this built into the framework? Is it just not possible in other browsers to have hot module replacement? Not a huge deal! Really just curious and trying to learn more about how this stuff works. Thank you!
Was this page helpful?