Skip to content

Latest commit

 

History

History
42 lines (37 loc) · 1.15 KB

chrome-cheat-sheet.md

File metadata and controls

42 lines (37 loc) · 1.15 KB

google chrome cheat sheet

how to install

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

internal links

  • system settings
  • applications
  • extensions

extensions folder

# 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

CHROME_CONFIG=$HOME/.config/google-chrome
IFS=$'\n'
for each_file in `find $CHROME_CONFIG | grep -i Extensions | grep manifest.json$`; do
    echo $each_file
    cat $each_file | grep '"name": '
done