blob: 5587825c9ad4db5f3bc4b599928766a2488af22f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#
# Wrapper around chromium to enable extensions
# See https://wiki.debian.org/Chromium#Extensions
# https://www.chromium.org/developers/creating-and-using-profiles
# Check
if [ -z "$1" ]; then
cat $0
exit 1
fi
if which chromium 2> /dev/null; then
BASE="$HOME/.config/chromium-profiles"
PROFILE="$BASE/$1"
mkdir -p "$PROFILE"
shift
CHROMIUM_FLAGS="$CHROMIUM_FLAGS --enable-remote-extensions" chromium --user-data-dir="$PROFILE" $*
fi
|