x-www-browser https://www.google.com/chrome/thank-you.html?brand=CHBD&statcb=0&installdataindex=empty&defaultbrowser=0
# remove chrome cache:
rm -rf ~/.cache/google-chrome
rm -rf ~/.config/google-chrome
sudo dpkg -i ~/Downloads/google-chrome-stable_current_amd64.deb
firefox system links
about:about
- system settings
- applications
- extensions
# chrome
cd $HOME/.config/google-chrome/Default/Extensions/
# chromium
cd $HOME/snap/chromium/common/chromium/Default/Extensions/
find names of all installed extensions with path to them
EXT_PATH=$HOME/snap/chromium/common/chromium/Default/Extensions/
for each_file in `find $EXT_PATH -name "manifest.json"`; do
echo $each_file
cat $each_file | grep '"name": '
done
alternative way of finding names of all installed plugins/extensions
CHROME_CONFIG=$HOME/.config/google-chrome
IFS=$'\n'
for each_file in `find $CHROME_CONFIG | grep manifest.json$`; do
echo $each_file
cat $each_file | grep '"name": '
done
## folder
ll "$HOME/snap/chromium/common/chromium/Default/Web Applications/Manifest Resources/"
## start application
/snap/bin/chromium --profile-directory=Default --app-id=cifhbcnohmdccbgoicgdjpfamggdegmo
link anchor, link to text, highlight text on the page, find text on the page, text fragments
x-www-browser https://github.com/cherkavi/cheat-sheet/blob/master/architecture-cheat-sheet.md#:~:text=Architecture cheat sheet&text=Useful links
# also possible to say prefix before the text
x-www-browser https://github.com/cherkavi/cheat-sheet/blob/master/architecture-cheat-sheet.md#:~:text=Postponing,%20about
# aslo possible to say previx and suffix around the destination text
sudo mkdir -p /etc/firefox/policies
echo '
{
"policies": {
"DisablePrivateBrowsing": true
}
}
' >> /etc/firefox/policies/policies.json