10 ms·
Please share how you did do that, that sounds awesome!
by zyber 8y ago
Please share how you did do that, that sounds awesome!
- OJFord 8y agoNot GP, but you could just do the same except after making the temp dir: copy in `profile/addons.json` and `-r profile/extension*` from your main profile. (There might be other files needed to, not tested.)
- Topgamer7 8y ago#!/bin/sh PROFILEDIR=`mktemp -p /tmp -d tmp-fx-profile.XXXXXX.d` mkdir -p $PROFILEDIR/extensions cd ~/.mozilla/firefox/yvwc47i0.default/ cp extensions/* $PROFILEDIR/extensions/ cp addons.json extensions.json $PROFILEDIR/ cp -R browser-extension-data $PROFILEDIR/ cp cert_override.txt $PROFILEDIR/ #cp prefs.js $PROFILEDIR/ echo 'user_pref("devtools.selfxss.count", 10);' > $PROFILEDIR/prefs.js cd - firefox -profile $PROFILEDIR -no-remote -new-instance rm -rf $PROFILEDIR Created this as a script somewhere in my path. You'd need to change `cd ~/.mozilla/firefox/yvwc47i0.default/` to match what yours is.