I used to script the configuration of Crappy FireTitle to set the title for Firefox profiles which were also created with scripts. This has broken as it appears FireTitle is storing the configuration elsewhere. Can you explain to me where it is now stored so I can attempt to create a new automated solution for this? For reference, this is what I was doing before.
firetitle_dir="$PROFILES_DIR/$PROFILE_NAME/browser-extension-data/crappyfiretitle@chezlefab.net"
if [[ ! -d "${firetitle_dir}" ]]; then
mkdir -v "${firetitle_dir}"
fi
sed "s|PROFILE_NAME|${PROFILE_NAME^^}|g" \
"$SCRIPT_DIR/crappyfiretitle.template" \
> "${firetitle_dir}/storage.js"
I used to script the configuration of Crappy FireTitle to set the title for Firefox profiles which were also created with scripts. This has broken as it appears FireTitle is storing the configuration elsewhere. Can you explain to me where it is now stored so I can attempt to create a new automated solution for this? For reference, this is what I was doing before.