Neat. Boils down to:
PROFILEDIR=`mktemp -p /tmp -d tmp-fx-profile.XXXXXX.d`
firefox -profile $PROFILEDIR -no-remote -new-instance
Doing something similiar with Chrome for Debug Sessions with vscode already.
Create a temporary folder for a temporary profile, Run Firefox with argument -profile path/to/tem...
Neat. Boils down to:
PROFILEDIR=`mktemp -p /tmp -d tmp-fx-profile.XXXXXX.d`
firefox -profile $PROFILEDIR -no-remote -new-instance
Doing something similiar with Chrome for Debug Sessions with vscode already.