You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Based on https://developer.mozilla.org/en/Setting_up_extension_development_environment and http://kb.mozillazine.org/Profile_folder_-_Firefox
# This script accepts an optional parameter, which is a name of Firefox profile. Otherwise it uses 'default' profile. Either way, the profile must have been created by Firefox (i.e. its folder name must be in standard format).
if [[ "$1" ]]
then
PROFILE="$1"
else
PROFILE=default
fi
HOME_FOLDER=~
cd sel-blocks-fx_xpi
if [ "$(uname)" == "Darwin" ]; then
# According to http://kb.mozillazine.org/Profile_folder_-_Firefox there are two places for Firefox profile folder on Mac OS:
# ~/Library/Mozilla/Firefox/Profiles/<profile folder> or ~/Library/Application Support/Firefox/Profiles/<profile folder>
# But on Mac OS 10.5.8 and 10.9.1 I could see the second folder only. If you can test both, please update this/send this to me.